Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

File metadata and controls

30 lines (21 loc) · 1.09 KB

CapturePaymentRequest

Properties

Name Type Description Notes
payment_id str The identifier of the payment in the Barion system.
transactions List[TransactionToFinish]

Example

from clientapi_barion.models.capture_payment_request import CapturePaymentRequest

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

# convert the object into a dict
capture_payment_request_dict = capture_payment_request_instance.to_dict()
# create an instance of CapturePaymentRequest from a dict
capture_payment_request_from_dict = CapturePaymentRequest.from_dict(capture_payment_request_dict)

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