Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.19 KB

File metadata and controls

39 lines (30 loc) · 1.19 KB

Amenity

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.amenity import Amenity

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

# convert the object into a dict
amenity_dict = amenity_instance.to_dict()
# create an instance of Amenity from a dict
amenity_form_dict = amenity.from_dict(amenity_dict)

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