| Name |
Type |
Description |
Notes |
| is_successful |
bool |
Result of the transaction. |
|
| payment_id |
str |
The identifier of the payment, generated by the Barion system. |
|
| payment_request_id |
str |
The payment identifier supplied by the API caller in the request. |
|
| status |
str |
The status of the payment in the Barion system. |
|
| transactions |
List[ProcessedTransaction] |
|
|
from clientapi_barion.models.capture_payment_response import CapturePaymentResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CapturePaymentResponse from a JSON string
capture_payment_response_instance = CapturePaymentResponse.from_json(json)
# print the JSON string representation of the object
print(CapturePaymentResponse.to_json())
# convert the object into a dict
capture_payment_response_dict = capture_payment_response_instance.to_dict()
# create an instance of CapturePaymentResponse from a dict
capture_payment_response_from_dict = CapturePaymentResponse.from_dict(capture_payment_response_dict)
[Back to Model list] [Back to API list] [Back to README]