Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.75 KB

File metadata and controls

41 lines (32 loc) · 1.75 KB

UpdateStaticVoucherCampaignWithVoucher

Properties

Name Type Description Notes
title object
notes object
value_type StaticVoucherCampaignValueType
display_value object [optional]
merchants_reference_id object [optional]
valid_only_at_pos_register_ids object [optional]
payment_design_id str
start_date_time object
expiration_date_time object
member_id object [optional]
offer_amount_cents object
cell_phone object [optional]
voucher_id str

Example

from wallet.models.update_static_voucher_campaign_with_voucher import UpdateStaticVoucherCampaignWithVoucher

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

# convert the object into a dict
update_static_voucher_campaign_with_voucher_dict = update_static_voucher_campaign_with_voucher_instance.to_dict()
# create an instance of UpdateStaticVoucherCampaignWithVoucher from a dict
update_static_voucher_campaign_with_voucher_form_dict = update_static_voucher_campaign_with_voucher.from_dict(update_static_voucher_campaign_with_voucher_dict)

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