| 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 |
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)