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
List of amenity codes to set for the room (full replace)
Example
fromcloudbeds_pms.models.room_amenities_update_request_schemaimportRoomAmenitiesUpdateRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of RoomAmenitiesUpdateRequestSchema from a JSON stringroom_amenities_update_request_schema_instance=RoomAmenitiesUpdateRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(RoomAmenitiesUpdateRequestSchema.to_json())
# convert the object into a dictroom_amenities_update_request_schema_dict=room_amenities_update_request_schema_instance.to_dict()
# create an instance of RoomAmenitiesUpdateRequestSchema from a dictroom_amenities_update_request_schema_from_dict=RoomAmenitiesUpdateRequestSchema.from_dict(room_amenities_update_request_schema_dict)