Skip to content

Latest commit

 

History

History
53 lines (44 loc) · 2.1 KB

File metadata and controls

53 lines (44 loc) · 2.1 KB

StaticVoucherCampaign

Properties

Name Type Description Notes
id WTWalletPageViewId
title str
notes str
value_type PickVSCampaignUpdateParamsExcludeKeyofVSCampaignUpdateParamsStartDateOrExpirationDateValueType
is_loaded bool
display_value str [optional]
merchants_reference_id str [optional]
valid_only_at_pos_register_ids List[str] [optional]
payment_design_id str
employee_id str
reinvestment_sum int
number_of_vouchers_in_file int
campaign_group_id str [optional]
bucket str [optional]
created_by_source_id int
original_file_name str [optional]
merchant_id str
created_at datetime
updated_at datetime
is_active bool
voucher_type float
reinvestment_sum_decimal str
reinvestment_sum_string str
start_date datetime
expiration_date datetime

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]