Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 976 Bytes

ResultSetPaging.md

File metadata and controls

29 lines (21 loc) · 976 Bytes

ResultSetPaging

Query results

Properties

Name Type Description Notes
list ResultSetPagingList [optional]

Example

from alfresco_search_api_client.models.result_set_paging import ResultSetPaging

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

# convert the object into a dict
result_set_paging_dict = result_set_paging_instance.to_dict()
# create an instance of ResultSetPaging from a dict
result_set_paging_form_dict = result_set_paging.from_dict(result_set_paging_dict)

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