Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

PaymentReorderPostResponse

Properties

Name Type Description Notes
cost_rials str هزینه تراکنش به ریال برای اپلیکیشن شما [optional]
id str همان uuid هنگام ایجاد تراکنش [optional]

Example

from kenar_api_client.models.payment_reorder_post_response import PaymentReorderPostResponse

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

# convert the object into a dict
payment_reorder_post_response_dict = payment_reorder_post_response_instance.to_dict()
# create an instance of PaymentReorderPostResponse from a dict
payment_reorder_post_response_from_dict = PaymentReorderPostResponse.from_dict(payment_reorder_post_response_dict)

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