Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.6 KB

File metadata and controls

43 lines (34 loc) · 1.6 KB

HotelInfoResponse

Properties

Name Type Description Notes
hotel_identifier str
location str Search location echoed from the request.
language str
observed_at str [optional]
search_url str [optional]
title str [optional]
stars int Hotel class rating, 1-5. [optional]
stars_description str [optional]
address str [optional]
phone str [optional]
about HotelAbout [optional]
place HotelPlace [optional]
reviews HotelReviews [optional]
overview_images List[str] [optional]
prices HotelPrice [optional]

Example

from unifapi.models.hotel_info_response import HotelInfoResponse

# TODO update the JSON string below
json = "{}"
# create an instance of HotelInfoResponse from a JSON string
hotel_info_response_instance = HotelInfoResponse.from_json(json)
# print the JSON string representation of the object
print(HotelInfoResponse.to_json())

# convert the object into a dict
hotel_info_response_dict = hotel_info_response_instance.to_dict()
# create an instance of HotelInfoResponse from a dict
hotel_info_response_from_dict = HotelInfoResponse.from_dict(hotel_info_response_dict)

[Back to Model list] [Back to API list] [Back to README]