Skip to content

Latest commit

 

History

History
53 lines (44 loc) · 1.99 KB

File metadata and controls

53 lines (44 loc) · 1.99 KB

StaticVoucherCampaign

Properties

Name Type Description Notes
id StaticVoucherId
title object
notes object
value_type StaticVoucherCampaignValueType
is_loaded object
display_value object [optional]
merchants_reference_id object [optional]
valid_only_at_pos_register_ids object [optional]
payment_design_id str
employee_id str
reinvestment_sum object
number_of_vouchers_in_file object
campaign_group_id str [optional]
bucket object [optional]
created_by_source_id object
original_file_name object [optional]
merchant_id str
created_at object
updated_at object
is_active object
voucher_type object
reinvestment_sum_decimal object
reinvestment_sum_string object
start_date object
expiration_date object

Example

from wallet.models.static_voucher_campaign import StaticVoucherCampaign

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

# convert the object into a dict
static_voucher_campaign_dict = static_voucher_campaign_instance.to_dict()
# create an instance of StaticVoucherCampaign from a dict
static_voucher_campaign_form_dict = static_voucher_campaign.from_dict(static_voucher_campaign_dict)

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