Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

WTStaticVoucherCreateParams

Properties

Name Type Description Notes
offer_amount_cents int
member_id str [optional]
cell_phone str
campaign_id WTWalletPageViewId

Example

from wallet.models.wt_static_voucher_create_params import WTStaticVoucherCreateParams

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

# convert the object into a dict
wt_static_voucher_create_params_dict = wt_static_voucher_create_params_instance.to_dict()
# create an instance of WTStaticVoucherCreateParams from a dict
wt_static_voucher_create_params_form_dict = wt_static_voucher_create_params.from_dict(wt_static_voucher_create_params_dict)

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