Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.57 KB

File metadata and controls

41 lines (32 loc) · 1.57 KB

WTAdvertisementCredit

Properties

Name Type Description Notes
title str
value_type PickVSCampaignUpdateParamsExcludeKeyofVSCampaignUpdateParamsStartDateOrExpirationDateValueType
payment_design_id str
max_uses int
discount_value int
employee_id str
id WTWalletPageViewId
merchant_id str
created_at datetime
updated_at datetime
is_active bool
discount_value_decimal str
discount_value_string str

Example

from wallet.models.wt_advertisement_credit import WTAdvertisementCredit

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

# convert the object into a dict
wt_advertisement_credit_dict = wt_advertisement_credit_instance.to_dict()
# create an instance of WTAdvertisementCredit from a dict
wt_advertisement_credit_form_dict = wt_advertisement_credit.from_dict(wt_advertisement_credit_dict)

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