Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

WTWalletItemRedemption

Properties

Name Type Description Notes
check_amount object
transaction_number object
meta_value object [optional]

Example

from wallet.models.wt_wallet_item_redemption import WTWalletItemRedemption

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

# convert the object into a dict
wt_wallet_item_redemption_dict = wt_wallet_item_redemption_instance.to_dict()
# create an instance of WTWalletItemRedemption from a dict
wt_wallet_item_redemption_form_dict = wt_wallet_item_redemption.from_dict(wt_wallet_item_redemption_dict)

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