Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.14 KB

File metadata and controls

34 lines (25 loc) · 1.14 KB

WTDiningCreateParams

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]

Example

from wallet.models.wt_dining_create_params import WTDiningCreateParams

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

# convert the object into a dict
wt_dining_create_params_dict = wt_dining_create_params_instance.to_dict()
# create an instance of WTDiningCreateParams from a dict
wt_dining_create_params_form_dict = wt_dining_create_params.from_dict(wt_dining_create_params_dict)

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