Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.14 KB

File metadata and controls

29 lines (20 loc) · 1.14 KB

PaymentPublishUserPostResponse

Properties

Name Type Description Notes
transaction PaymentTransaction [optional]

Example

from kenar_api_client.models.payment_publish_user_post_response import PaymentPublishUserPostResponse

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

# convert the object into a dict
payment_publish_user_post_response_dict = payment_publish_user_post_response_instance.to_dict()
# create an instance of PaymentPublishUserPostResponse from a dict
payment_publish_user_post_response_from_dict = PaymentPublishUserPostResponse.from_dict(payment_publish_user_post_response_dict)

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