Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.56 KB

File metadata and controls

35 lines (26 loc) · 1.56 KB

PaymentTransaction

Properties

Name Type Description Notes
app_slug str شناسه اپلیکیشنی که تراکنش را ایجاد کرده است [optional]
cost_rials str هزینه تراکنش به ریال برای اپلیکیشن شما [optional]
created_at datetime زمان ایجاد تراکنش [optional]
extra_details str همان جزئیات اضافی که در درخواست ارسال کردید [optional]
id str همان uuid هنگام ایجاد تراکنش [optional]
state PaymentTransactionState [optional]
type PaymentTransactionType [optional]

Example

from kenar_api_client.models.payment_transaction import PaymentTransaction

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

# convert the object into a dict
payment_transaction_dict = payment_transaction_instance.to_dict()
# create an instance of PaymentTransaction from a dict
payment_transaction_from_dict = PaymentTransaction.from_dict(payment_transaction_dict)

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