Hotel description, address, website, and amenities when present.
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | Hotel description. | [optional] |
| full_address | str | Standardised full address of the hotel. | [optional] |
| domain | str | Domain of the hotel's website. | [optional] |
| url | str | URL of the hotel's website. | [optional] |
| check_in_time | str | Listed check-in time as HH:MM (24-hour). | [optional] |
| check_out_time | str | Listed check-out time as HH:MM (24-hour). | [optional] |
| amenities | List[str] | Available amenity labels offered by the hotel. | [optional] |
| extras | Dict[str, object] | Additional descriptive detail such as sub-descriptions and amenity categories. | [optional] |
from unifapi.models.hotel_about import HotelAbout
# TODO update the JSON string below
json = "{}"
# create an instance of HotelAbout from a JSON string
hotel_about_instance = HotelAbout.from_json(json)
# print the JSON string representation of the object
print(HotelAbout.to_json())
# convert the object into a dict
hotel_about_dict = hotel_about_instance.to_dict()
# create an instance of HotelAbout from a dict
hotel_about_from_dict = HotelAbout.from_dict(hotel_about_dict)