Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.64 KB

File metadata and controls

34 lines (25 loc) · 1.64 KB

CapturePaymentResponseWithErrorMessages

Properties

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]
errors List[Error] [optional]

Example

from clientapi_barion.models.capture_payment_response_with_error_messages import CapturePaymentResponseWithErrorMessages

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

# convert the object into a dict
capture_payment_response_with_error_messages_dict = capture_payment_response_with_error_messages_instance.to_dict()
# create an instance of CapturePaymentResponseWithErrorMessages from a dict
capture_payment_response_with_error_messages_from_dict = CapturePaymentResponseWithErrorMessages.from_dict(capture_payment_response_with_error_messages_dict)

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