Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

WTStaticVoucherUpdateParams.md

File metadata and controls

31 lines (22 loc) · 1.12 KB

WTStaticVoucherUpdateParams

Properties

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

Example

from wallet.models.wt_static_voucher_update_params import WTStaticVoucherUpdateParams

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

# convert the object into a dict
wt_static_voucher_update_params_dict = wt_static_voucher_update_params_instance.to_dict()
# create an instance of WTStaticVoucherUpdateParams from a dict
wt_static_voucher_update_params_form_dict = wt_static_voucher_update_params.from_dict(wt_static_voucher_update_params_dict)

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