The type of the transaction - only redemption at the moment
| Name | Type | Description | Notes |
|---|
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)