Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.7 KB

File metadata and controls

34 lines (25 loc) · 1.7 KB

CancelAuthorizationResponseWithErrorMessages

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.cancel_authorization_response_with_error_messages import CancelAuthorizationResponseWithErrorMessages

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

# convert the object into a dict
cancel_authorization_response_with_error_messages_dict = cancel_authorization_response_with_error_messages_instance.to_dict()
# create an instance of CancelAuthorizationResponseWithErrorMessages from a dict
cancel_authorization_response_with_error_messages_from_dict = CancelAuthorizationResponseWithErrorMessages.from_dict(cancel_authorization_response_with_error_messages_dict)

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