You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An array containing all transactions associated with the payment. If the Barion system deducts fees from the shop after payments, this also contains these additional fee transactions beside the payment transactions that were sent in the request.
[optional]
gateway_url
str
The URL of the Barion Smart Gateway (including the payment identifier), where the API caller should redirect the payer.
[optional]
callback_url
str
The URL (including the payment identifier) where the Barion system will send a request to whenever there is a change in the state of the payment. If an explicit URL was not supplied, this will be the callback URL associated with the shop that started the payment.
[optional]
redirect_url
str
The URL (including the payment identifier) where the payer gets redirected to after the payment is completed or cancelled. If an explicit URL was not supplied, this will be the redirect URL associated with the shop that started the payment.
[optional]
three_ds_auth_client_data
str
Encrypted client authentication data required for 3D Secure processing. This value can be used when the webshop first tried to complete the payment without user interaction, but the charge failed due to a 3D Secure challenge being mandatory.
fromclientapi_barion.models.payment_start_response_with_error_messagesimportPaymentStartResponseWithErrorMessages# TODO update the JSON string belowjson="{}"# create an instance of PaymentStartResponseWithErrorMessages from a JSON stringpayment_start_response_with_error_messages_instance=PaymentStartResponseWithErrorMessages.from_json(json)
# print the JSON string representation of the objectprint(PaymentStartResponseWithErrorMessages.to_json())
# convert the object into a dictpayment_start_response_with_error_messages_dict=payment_start_response_with_error_messages_instance.to_dict()
# create an instance of PaymentStartResponseWithErrorMessages from a dictpayment_start_response_with_error_messages_from_dict=PaymentStartResponseWithErrorMessages.from_dict(payment_start_response_with_error_messages_dict)