Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

WTStaticVoucherUpdateParams

Properties

Name Type Description Notes
member_id object [optional]
offer_amount_cents object
cell_phone object

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]