Name | Type | Description | Notes |
---|---|---|---|
group | str | Share with Group | [optional] |
permissions | List[UserSharePermission] | List of share permissions | [optional] |
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)