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
Filter by room type IDs. Comma-separated list of room type IDs. Values passed as strings to avoid precision loss
[optional]
release_date
str
Filter by release date. Use single date (2025-01-01) or range (2025-01-01..2025-01-31)
[optional]
start_date
str
Filter by schedule start date. Use single date (2025-01-01) or range (2025-01-01..2025-01-31)
[optional]
end_date
str
Filter by schedule end date. Use single date (2025-01-01) or range (2025-01-01..2025-01-31)
[optional]
Example
fromcloudbeds_pms.models.allotment_block_release_list_request_schemaimportAllotmentBlockReleaseListRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of AllotmentBlockReleaseListRequestSchema from a JSON stringallotment_block_release_list_request_schema_instance=AllotmentBlockReleaseListRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(AllotmentBlockReleaseListRequestSchema.to_json())
# convert the object into a dictallotment_block_release_list_request_schema_dict=allotment_block_release_list_request_schema_instance.to_dict()
# create an instance of AllotmentBlockReleaseListRequestSchema from a dictallotment_block_release_list_request_schema_from_dict=AllotmentBlockReleaseListRequestSchema.from_dict(allotment_block_release_list_request_schema_dict)