| 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.lounge import Lounge
# TODO update the JSON string below
json = "{}"
# create an instance of Lounge from a JSON string
lounge_instance = Lounge.from_json(json)
# print the JSON string representation of the object
print Lounge.to_json()
# convert the object into a dict
lounge_dict = lounge_instance.to_dict()
# create an instance of Lounge from a dict
lounge_form_dict = lounge.from_dict(lounge_dict)