Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.05 KB

File metadata and controls

28 lines (19 loc) · 1.05 KB

StaticVoucherCampaignValueType

Properties

Name Type Description Notes

Example

from wallet.models.static_voucher_campaign_value_type import StaticVoucherCampaignValueType

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

# convert the object into a dict
static_voucher_campaign_value_type_dict = static_voucher_campaign_value_type_instance.to_dict()
# create an instance of StaticVoucherCampaignValueType from a dict
static_voucher_campaign_value_type_form_dict = static_voucher_campaign_value_type.from_dict(static_voucher_campaign_value_type_dict)

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