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

RatePlanListResponseSchema

Properties

Name Type Description Notes
limit int
offset int
data List[RatePlanResponseSchema]

Example

from cloudbeds_pms.models.rate_plan_list_response_schema import RatePlanListResponseSchema

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

# convert the object into a dict
rate_plan_list_response_schema_dict = rate_plan_list_response_schema_instance.to_dict()
# create an instance of RatePlanListResponseSchema from a dict
rate_plan_list_response_schema_from_dict = RatePlanListResponseSchema.from_dict(rate_plan_list_response_schema_dict)

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