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]
adjust_price
bool
Whether to adjust price if room assignment changes rate
[optional] [default to False]
Example
fromcloudbeds_pms.models.reservation_room_controller_update_room_requestimportReservationRoomControllerUpdateRoomRequest# TODO update the JSON string belowjson="{}"# create an instance of ReservationRoomControllerUpdateRoomRequest from a JSON stringreservation_room_controller_update_room_request_instance=ReservationRoomControllerUpdateRoomRequest.from_json(json)
# print the JSON string representation of the objectprint(ReservationRoomControllerUpdateRoomRequest.to_json())
# convert the object into a dictreservation_room_controller_update_room_request_dict=reservation_room_controller_update_room_request_instance.to_dict()
# create an instance of ReservationRoomControllerUpdateRoomRequest from a dictreservation_room_controller_update_room_request_from_dict=ReservationRoomControllerUpdateRoomRequest.from_dict(reservation_room_controller_update_room_request_dict)