Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 932 Bytes

SiteMemberEntry.md

File metadata and controls

28 lines (20 loc) · 932 Bytes

SiteMemberEntry

Properties

Name Type Description Notes
entry SiteMember

Example

from alfresco_core_api_client.models.site_member_entry import SiteMemberEntry

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

# convert the object into a dict
site_member_entry_dict = site_member_entry_instance.to_dict()
# create an instance of SiteMemberEntry from a dict
site_member_entry_form_dict = site_member_entry.from_dict(site_member_entry_dict)

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