Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

File metadata and controls

31 lines (22 loc) · 1.25 KB

InspectionListResponseSchema

Properties

Name Type Description Notes
limit int The limit for the number of items to return
offset int The offset for the current page of results
data List[InspectionItemSchema] The list of data objects

Example

from cloudbeds_pms.models.inspection_list_response_schema import InspectionListResponseSchema

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

# convert the object into a dict
inspection_list_response_schema_dict = inspection_list_response_schema_instance.to_dict()
# create an instance of InspectionListResponseSchema from a dict
inspection_list_response_schema_from_dict = InspectionListResponseSchema.from_dict(inspection_list_response_schema_dict)

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