Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

PaymentRenewPostResponse

Properties

Name Type Description Notes
transaction PaymentTransaction [optional]

Example

from kenar_api_client.models.payment_renew_post_response import PaymentRenewPostResponse

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

# convert the object into a dict
payment_renew_post_response_dict = payment_renew_post_response_instance.to_dict()
# create an instance of PaymentRenewPostResponse from a dict
payment_renew_post_response_from_dict = PaymentRenewPostResponse.from_dict(payment_renew_post_response_dict)

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