Name | Type | Description | Notes |
---|---|---|---|
pagination | Pagination | [optional] | |
entries | List[PersonEntry] | [optional] |
from alfresco_core_api_client.models.person_paging_list import PersonPagingList
# TODO update the JSON string below
json = "{}"
# create an instance of PersonPagingList from a JSON string
person_paging_list_instance = PersonPagingList.from_json(json)
# print the JSON string representation of the object
print PersonPagingList.to_json()
# convert the object into a dict
person_paging_list_dict = person_paging_list_instance.to_dict()
# create an instance of PersonPagingList from a dict
person_paging_list_form_dict = person_paging_list.from_dict(person_paging_list_dict)