Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

HotelPriceByDate

Properties

Name Type Description Notes
price float Nightly price for this date in the response currency. [optional]
currency str ISO 4217 currency code for the price. [optional]
check_in_date str Check-in date for this calendar entry. [optional]
check_out_date str Check-out date for this calendar entry. [optional]

Example

from unifapi.models.hotel_price_by_date import HotelPriceByDate

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

# convert the object into a dict
hotel_price_by_date_dict = hotel_price_by_date_instance.to_dict()
# create an instance of HotelPriceByDate from a dict
hotel_price_by_date_from_dict = HotelPriceByDate.from_dict(hotel_price_by_date_dict)

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