Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

AddonsResponseSchema

Properties

Name Type Description Notes
offset int Number of results to skip
limit int Maximum number of results to return
data List[AddonResponseSchema] Contains the list of add-on details

Example

from cloudbeds_pms.models.addons_response_schema import AddonsResponseSchema

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

# convert the object into a dict
addons_response_schema_dict = addons_response_schema_instance.to_dict()
# create an instance of AddonsResponseSchema from a dict
addons_response_schema_from_dict = AddonsResponseSchema.from_dict(addons_response_schema_dict)

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