Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.25 KB

File metadata and controls

29 lines (20 loc) · 1.25 KB

WTDynamicVoucherRedemptionTransactionType

The type of the transaction - only redemption at the moment

Properties

Name Type Description Notes

Example

from wallet.models.wt_dynamic_voucher_redemption_transaction_type import WTDynamicVoucherRedemptionTransactionType

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

# convert the object into a dict
wt_dynamic_voucher_redemption_transaction_type_dict = wt_dynamic_voucher_redemption_transaction_type_instance.to_dict()
# create an instance of WTDynamicVoucherRedemptionTransactionType from a dict
wt_dynamic_voucher_redemption_transaction_type_form_dict = wt_dynamic_voucher_redemption_transaction_type.from_dict(wt_dynamic_voucher_redemption_transaction_type_dict)

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