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
Room ID to assign (format: 'roomTypeId-roomNumber'), or null to unassign
[optional]
room_type_id
int
Room type ID to change to (without assigning specific room), or null
[optional]
adjust_price
bool
Whether to adjust price if room assignment changes rate
[optional] [default to False]
Example
fromcloudbeds_pms.models.update_reservation_room_request_schemaimportUpdateReservationRoomRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of UpdateReservationRoomRequestSchema from a JSON stringupdate_reservation_room_request_schema_instance=UpdateReservationRoomRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(UpdateReservationRoomRequestSchema.to_json())
# convert the object into a dictupdate_reservation_room_request_schema_dict=update_reservation_room_request_schema_instance.to_dict()
# create an instance of UpdateReservationRoomRequestSchema from a dictupdate_reservation_room_request_schema_from_dict=UpdateReservationRoomRequestSchema.from_dict(update_reservation_room_request_schema_dict)