| Name |
Type |
Description |
Notes |
| payment_id |
str |
The identifier of the payment, generated by the Barion system. |
[optional] |
| payment_request_id |
str |
The payment identifier supplied by the API caller in the request. |
[optional] |
| payment_status |
str |
The status of the payment in the Barion system. |
[optional] |
| is_successful |
bool |
Indicates whether the charge was successful. |
[optional] |
| trace_id |
str |
Identifies the nature of the token payment. |
[optional] |
from clientapi_barion.models.payment_complete_response import PaymentCompleteResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PaymentCompleteResponse from a JSON string
payment_complete_response_instance = PaymentCompleteResponse.from_json(json)
# print the JSON string representation of the object
print(PaymentCompleteResponse.to_json())
# convert the object into a dict
payment_complete_response_dict = payment_complete_response_instance.to_dict()
# create an instance of PaymentCompleteResponse from a dict
payment_complete_response_from_dict = PaymentCompleteResponse.from_dict(payment_complete_response_dict)
[Back to Model list] [Back to API list] [Back to README]