Name | Type | Description | Notes |
---|---|---|---|
pagination | Pagination | ||
entries | List[SiteContainerEntry] |
from alfresco_core_api_client.models.site_container_paging_list import SiteContainerPagingList
# TODO update the JSON string below
json = "{}"
# create an instance of SiteContainerPagingList from a JSON string
site_container_paging_list_instance = SiteContainerPagingList.from_json(json)
# print the JSON string representation of the object
print SiteContainerPagingList.to_json()
# convert the object into a dict
site_container_paging_list_dict = site_container_paging_list_instance.to_dict()
# create an instance of SiteContainerPagingList from a dict
site_container_paging_list_form_dict = site_container_paging_list.from_dict(site_container_paging_list_dict)