Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 952 Bytes

SiteMember.md

File metadata and controls

31 lines (23 loc) · 952 Bytes

SiteMember

Properties

Name Type Description Notes
id str
person Person
role str
is_member_of_group bool [optional]

Example

from alfresco_core_api_client.models.site_member import SiteMember

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

# convert the object into a dict
site_member_dict = site_member_instance.to_dict()
# create an instance of SiteMember from a dict
site_member_form_dict = site_member.from_dict(site_member_dict)

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