Name | Type | Description | Notes |
---|---|---|---|
id | str | ||
folder_id | str |
from alfresco_core_api_client.models.site_container import SiteContainer
# TODO update the JSON string below
json = "{}"
# create an instance of SiteContainer from a JSON string
site_container_instance = SiteContainer.from_json(json)
# print the JSON string representation of the object
print SiteContainer.to_json()
# convert the object into a dict
site_container_dict = site_container_instance.to_dict()
# create an instance of SiteContainer from a dict
site_container_form_dict = site_container.from_dict(site_container_dict)