Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.35 KB

File metadata and controls

32 lines (23 loc) · 1.35 KB

CustomItemListRequestSchema

Properties

Name Type Description Notes
limit int The limit for the number of items to return (max 500) [optional] [default to 100]
offset int The offset for the current page of results [optional] [default to 0]
filters DynamicFilterSchema [optional]
sort SortSchema [optional]

Example

from cloudbeds_pms.models.custom_item_list_request_schema import CustomItemListRequestSchema

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

# convert the object into a dict
custom_item_list_request_schema_dict = custom_item_list_request_schema_instance.to_dict()
# create an instance of CustomItemListRequestSchema from a dict
custom_item_list_request_schema_from_dict = CustomItemListRequestSchema.from_dict(custom_item_list_request_schema_dict)

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