Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

File metadata and controls

33 lines (24 loc) · 1.35 KB

CapturePaymentResponse

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]

Example

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]