Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

PaymentWalletTransaction

Properties

Name Type Description Notes
amount_rials str [optional]
status PaymentWalletTransactionStatus [optional]
token str [optional]

Example

from kenar_api_client.models.payment_wallet_transaction import PaymentWalletTransaction

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

# convert the object into a dict
payment_wallet_transaction_dict = payment_wallet_transaction_instance.to_dict()
# create an instance of PaymentWalletTransaction from a dict
payment_wallet_transaction_from_dict = PaymentWalletTransaction.from_dict(payment_wallet_transaction_dict)

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