Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.31 KB

UserShare.md

File metadata and controls

36 lines (27 loc) · 1.31 KB

UserShare

Properties

Name Type Description Notes
group str Name of Share Group [optional]
share_key str Share Identifier [optional]
type str Type of Document [optional]
permissions List[UserSharePermission] List of share permissions [optional]
site_id str Site Identifier [optional]
path str Path or Name of document [optional]
user_id str User who created share [optional]
permission_type UserSharePermissionType [optional]

Example

from formkiq_client.models.user_share import UserShare

# TODO update the JSON string below
json = "{}"
# create an instance of UserShare from a JSON string
user_share_instance = UserShare.from_json(json)
# print the JSON string representation of the object
print(UserShare.to_json())

# convert the object into a dict
user_share_dict = user_share_instance.to_dict()
# create an instance of UserShare from a dict
user_share_from_dict = UserShare.from_dict(user_share_dict)

[Back to Model list] [Back to API list] [Back to README]