Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.91 KB

File metadata and controls

33 lines (24 loc) · 1.91 KB

AllotmentBlockAutoReleaseScheduleListRequestSchema

Properties

Name Type Description Notes
allotment_block_id str
room_type_ids str 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 schedule 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

from cloudbeds_pms.models.allotment_block_auto_release_schedule_list_request_schema import AllotmentBlockAutoReleaseScheduleListRequestSchema

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

# convert the object into a dict
allotment_block_auto_release_schedule_list_request_schema_dict = allotment_block_auto_release_schedule_list_request_schema_instance.to_dict()
# create an instance of AllotmentBlockAutoReleaseScheduleListRequestSchema from a dict
allotment_block_auto_release_schedule_list_request_schema_from_dict = AllotmentBlockAutoReleaseScheduleListRequestSchema.from_dict(allotment_block_auto_release_schedule_list_request_schema_dict)

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