Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

File metadata and controls

30 lines (21 loc) · 1.18 KB

CursorPaginationSchema

Properties

Name Type Description Notes
limit int The limit for the number of items to return (max 1000) [optional] [default to 5]
page_token str Token to retrieve the next page of results. It is returned in the response of the previous page. [optional]

Example

from cloudbeds_pms.models.cursor_pagination_schema import CursorPaginationSchema

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

# convert the object into a dict
cursor_pagination_schema_dict = cursor_pagination_schema_instance.to_dict()
# create an instance of CursorPaginationSchema from a dict
cursor_pagination_schema_from_dict = CursorPaginationSchema.from_dict(cursor_pagination_schema_dict)

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