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 areas for this room type. Must be empty when layoutTypeCode is null. Must have at least 1 area when layoutTypeCode is not null.
Example
fromcloudbeds_pms.models.put_room_type_areas_request_schemaimportPutRoomTypeAreasRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of PutRoomTypeAreasRequestSchema from a JSON stringput_room_type_areas_request_schema_instance=PutRoomTypeAreasRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(PutRoomTypeAreasRequestSchema.to_json())
# convert the object into a dictput_room_type_areas_request_schema_dict=put_room_type_areas_request_schema_instance.to_dict()
# create an instance of PutRoomTypeAreasRequestSchema from a dictput_room_type_areas_request_schema_from_dict=PutRoomTypeAreasRequestSchema.from_dict(put_room_type_areas_request_schema_dict)