Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

File metadata and controls

29 lines (20 loc) · 1.15 KB

PaymentTicketValidateResponse

Properties

Name Type Description Notes
issuer_payload object داده payload ارائه شده توسط صادرکننده تیکت [optional]

Example

from kenar_api_client.models.payment_ticket_validate_response import PaymentTicketValidateResponse

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

# convert the object into a dict
payment_ticket_validate_response_dict = payment_ticket_validate_response_instance.to_dict()
# create an instance of PaymentTicketValidateResponse from a dict
payment_ticket_validate_response_from_dict = PaymentTicketValidateResponse.from_dict(payment_ticket_validate_response_dict)

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