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 custom room amenities to remove from the room
[optional]
Example
fromcloudbeds_pms.models.delete_room_custom_amenities_request_schemaimportDeleteRoomCustomAmenitiesRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of DeleteRoomCustomAmenitiesRequestSchema from a JSON stringdelete_room_custom_amenities_request_schema_instance=DeleteRoomCustomAmenitiesRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(DeleteRoomCustomAmenitiesRequestSchema.to_json())
# convert the object into a dictdelete_room_custom_amenities_request_schema_dict=delete_room_custom_amenities_request_schema_instance.to_dict()
# create an instance of DeleteRoomCustomAmenitiesRequestSchema from a dictdelete_room_custom_amenities_request_schema_from_dict=DeleteRoomCustomAmenitiesRequestSchema.from_dict(delete_room_custom_amenities_request_schema_dict)