Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

File metadata and controls

30 lines (21 loc) · 1.15 KB

CustomItemListResponseSchema

Properties

Name Type Description Notes
data List[CustomItemResponseSchema]
total int Total number of items

Example

from cloudbeds_pms.models.custom_item_list_response_schema import CustomItemListResponseSchema

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

# convert the object into a dict
custom_item_list_response_schema_dict = custom_item_list_response_schema_instance.to_dict()
# create an instance of CustomItemListResponseSchema from a dict
custom_item_list_response_schema_from_dict = CustomItemListResponseSchema.from_dict(custom_item_list_response_schema_dict)

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