Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.61 KB

File metadata and controls

35 lines (26 loc) · 1.61 KB

AllotmentBlockAutoReleaseScheduleBulkCreateItemSchema

Properties

Name Type Description Notes
release_date str
room_type_id str
start_date str
end_date str
release_value_type str
release_value int
release_units str [optional]

Example

from cloudbeds_pms.models.allotment_block_auto_release_schedule_bulk_create_item_schema import AllotmentBlockAutoReleaseScheduleBulkCreateItemSchema

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

# convert the object into a dict
allotment_block_auto_release_schedule_bulk_create_item_schema_dict = allotment_block_auto_release_schedule_bulk_create_item_schema_instance.to_dict()
# create an instance of AllotmentBlockAutoReleaseScheduleBulkCreateItemSchema from a dict
allotment_block_auto_release_schedule_bulk_create_item_schema_from_dict = AllotmentBlockAutoReleaseScheduleBulkCreateItemSchema.from_dict(allotment_block_auto_release_schedule_bulk_create_item_schema_dict)

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