Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.21 KB

File metadata and controls

39 lines (30 loc) · 1.21 KB

RoomRate

Properties

Name Type Description Notes
title str
description str
displayed_price str [optional]
order_number int
media_url str [optional]
additional_info_url str [optional]
id SaveTicketSettingsRequestPaymentDesignID
created_at datetime
updated_at datetime
is_active bool
merchant_id str

Example

from wallet.models.room_rate import RoomRate

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

# convert the object into a dict
room_rate_dict = room_rate_instance.to_dict()
# create an instance of RoomRate from a dict
room_rate_form_dict = room_rate.from_dict(room_rate_dict)

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