Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.08 KB

RequestPagination.md

File metadata and controls

29 lines (21 loc) · 1.08 KB

RequestPagination

Properties

Name Type Description Notes
max_items int The maximum number of items to return in the query results [optional]
skip_count int The number of items to skip from the start of the query set [optional]

Example

from alfresco_search_api_client.models.request_pagination import RequestPagination

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

# convert the object into a dict
request_pagination_dict = request_pagination_instance.to_dict()
# create an instance of RequestPagination from a dict
request_pagination_form_dict = request_pagination.from_dict(request_pagination_dict)

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