Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

RatePlanSingleRequestSchema

Properties

Name Type Description Notes
id str Rate Plan ID.

Example

from cloudbeds_pms.models.rate_plan_single_request_schema import RatePlanSingleRequestSchema

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

# convert the object into a dict
rate_plan_single_request_schema_dict = rate_plan_single_request_schema_instance.to_dict()
# create an instance of RatePlanSingleRequestSchema from a dict
rate_plan_single_request_schema_from_dict = RatePlanSingleRequestSchema.from_dict(rate_plan_single_request_schema_dict)

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