Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 947 Bytes

Site.md

File metadata and controls

34 lines (26 loc) · 947 Bytes

Site

Properties

Name Type Description Notes
id str
guid str
title str
description str [optional]
visibility str
preset str [optional]
role str [optional]

Example

from alfresco_core_api_client.models.site import Site

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

# convert the object into a dict
site_dict = site_instance.to_dict()
# create an instance of Site from a dict
site_form_dict = site.from_dict(site_dict)

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