Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.32 KB

File metadata and controls

30 lines (21 loc) · 1.32 KB

PaymentListTransactionsResponse

Properties

Name Type Description Notes
next_page_token str توکن برای صفحه بعدی نتایج. [optional]
transactions List[PaymentTransaction] فهرست تراکنش‌هایی که با درخواست مطابقت دارند [optional]

Example

from kenar_api_client.models.payment_list_transactions_response import PaymentListTransactionsResponse

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

# convert the object into a dict
payment_list_transactions_response_dict = payment_list_transactions_response_instance.to_dict()
# create an instance of PaymentListTransactionsResponse from a dict
payment_list_transactions_response_from_dict = PaymentListTransactionsResponse.from_dict(payment_list_transactions_response_dict)

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