| 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.static_voucher import StaticVoucher
# TODO update the JSON string below
json = "{}"
# create an instance of StaticVoucher from a JSON string
static_voucher_instance = StaticVoucher.from_json(json)
# print the JSON string representation of the object
print StaticVoucher.to_json()
# convert the object into a dict
static_voucher_dict = static_voucher_instance.to_dict()
# create an instance of StaticVoucher from a dict
static_voucher_form_dict = static_voucher.from_dict(static_voucher_dict)