Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 2.24 KB

File metadata and controls

51 lines (42 loc) · 2.24 KB

AdvertisementCreditScan

Properties

Name Type Description Notes
id WTWalletPageViewId
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
authorized_against_check_number str
authorized_amount int
merchant_id str
created_at datetime
updated_at datetime
is_active bool
advertisement_credit_id str
redeemed_amount_decimal str
redeemed_amount_string str
authorized_amount_decimal str
authorized_amount_string str
date_time_redeemed datetime
date_time_refunded datetime

Example

from wallet.models.advertisement_credit_scan import AdvertisementCreditScan

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

# convert the object into a dict
advertisement_credit_scan_dict = advertisement_credit_scan_instance.to_dict()
# create an instance of AdvertisementCreditScan from a dict
advertisement_credit_scan_form_dict = advertisement_credit_scan.from_dict(advertisement_credit_scan_dict)

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