Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.37 KB

File metadata and controls

38 lines (29 loc) · 1.37 KB

WTProductCreateParams

Properties

Name Type Description Notes
title object
description object
displayed_price object [optional]
order_number int
media_url str [optional]
additional_info_url object [optional]
price_amount int [optional]
currency object [optional]
is_buyable bool [optional]
tax_behavior ProductTaxBehavior [optional]

Example

from wallet.models.wt_product_create_params import WTProductCreateParams

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

# convert the object into a dict
wt_product_create_params_dict = wt_product_create_params_instance.to_dict()
# create an instance of WTProductCreateParams from a dict
wt_product_create_params_form_dict = wt_product_create_params.from_dict(wt_product_create_params_dict)

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