Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 917 Bytes

SiteGroupEntry.md

File metadata and controls

28 lines (20 loc) · 917 Bytes

SiteGroupEntry

Properties

Name Type Description Notes
entry SiteGroup

Example

from alfresco_core_api_client.models.site_group_entry import SiteGroupEntry

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

# convert the object into a dict
site_group_entry_dict = site_group_entry_instance.to_dict()
# create an instance of SiteGroupEntry from a dict
site_group_entry_form_dict = site_group_entry.from_dict(site_group_entry_dict)

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