You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Start date of the date range to filter rate plans.
end_date
date
End date of the date range to filter rate plans.
Example
fromcloudbeds_pms.models.eligible_rates_request_schemaimportEligibleRatesRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of EligibleRatesRequestSchema from a JSON stringeligible_rates_request_schema_instance=EligibleRatesRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(EligibleRatesRequestSchema.to_json())
# convert the object into a dicteligible_rates_request_schema_dict=eligible_rates_request_schema_instance.to_dict()
# create an instance of EligibleRatesRequestSchema from a dicteligible_rates_request_schema_from_dict=EligibleRatesRequestSchema.from_dict(eligible_rates_request_schema_dict)