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