| Name | Type | Description | Notes |
|---|---|---|---|
| rooms | List[RoomAmenitiesUpdateRequestSchema] | List of rooms with amenities to update |
from cloudbeds_pms.models.update_property_rooms_amenities_request_schema import UpdatePropertyRoomsAmenitiesRequestSchema
# TODO update the JSON string below
json = "{}"
# create an instance of UpdatePropertyRoomsAmenitiesRequestSchema from a JSON string
update_property_rooms_amenities_request_schema_instance = UpdatePropertyRoomsAmenitiesRequestSchema.from_json(json)
# print the JSON string representation of the object
print(UpdatePropertyRoomsAmenitiesRequestSchema.to_json())
# convert the object into a dict
update_property_rooms_amenities_request_schema_dict = update_property_rooms_amenities_request_schema_instance.to_dict()
# create an instance of UpdatePropertyRoomsAmenitiesRequestSchema from a dict
update_property_rooms_amenities_request_schema_from_dict = UpdatePropertyRoomsAmenitiesRequestSchema.from_dict(update_property_rooms_amenities_request_schema_dict)