Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 944 Bytes

AddShare.md

File metadata and controls

30 lines (21 loc) · 944 Bytes

AddShare

Properties

Name Type Description Notes
group str Share with Group [optional]
permissions List[UserSharePermission] List of share permissions [optional]

Example

from formkiq_client.models.add_share import AddShare

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

# convert the object into a dict
add_share_dict = add_share_instance.to_dict()
# create an instance of AddShare from a dict
add_share_from_dict = AddShare.from_dict(add_share_dict)

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