| Name | Type | Description | Notes |
|---|---|---|---|
| id | WTWalletPageViewId | ||
| campaign_id | str | ||
| member_id | str | [optional] | |
| cell_phone_number | str | [optional] | |
| offer_amount_cents | int | ||
| order_number | int | ||
| transaction_type | PickVSStaticVoucherExcludeKeyofVSStaticVoucherRedeemedAtOrRefundedAtOrLastViewedAtTransactionType | ||
| register_id | PickVSStaticVoucherExcludeKeyofVSStaticVoucherRedeemedAtOrRefundedAtOrLastViewedAtRegisterID | ||
| redeemed_source | str | ||
| redeemed_transaction_id | str | ||
| redeemed_amount | int | ||
| is_redeemed | bool | ||
| refunded_transaction_id | str | ||
| refunded_amount | int | ||
| status | Status | ||
| customer_id | str | [optional] | |
| authorized_against_check_number | str | ||
| authorized_amount | int | ||
| merchant_id | str | ||
| created_at | datetime | ||
| updated_at | datetime | ||
| is_active | bool | ||
| authorized_amount_decimal | str | ||
| authorized_amount_string | str | ||
| offer_amount_cents_decimal | str | ||
| offer_amount_cents_string | str | ||
| redeemed_amount_decimal | str | ||
| redeemed_amount_string | str | ||
| date_time_redeemed | datetime | [optional] | |
| date_time_refunded | datetime | [optional] | |
| date_time_last_viewed | datetime | [optional] | |
| reason_invalid | str | [optional] |
from wallet.models.wt_static_voucher import WTStaticVoucher
# TODO update the JSON string below
json = "{}"
# create an instance of WTStaticVoucher from a JSON string
wt_static_voucher_instance = WTStaticVoucher.from_json(json)
# print the JSON string representation of the object
print WTStaticVoucher.to_json()
# convert the object into a dict
wt_static_voucher_dict = wt_static_voucher_instance.to_dict()
# create an instance of WTStaticVoucher from a dict
wt_static_voucher_form_dict = wt_static_voucher.from_dict(wt_static_voucher_dict)