Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.41 KB

File metadata and controls

33 lines (24 loc) · 1.41 KB

CancelAuthorizationResponse

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.cancel_authorization_response import CancelAuthorizationResponse

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

# convert the object into a dict
cancel_authorization_response_dict = cancel_authorization_response_instance.to_dict()
# create an instance of CancelAuthorizationResponse from a dict
cancel_authorization_response_from_dict = CancelAuthorizationResponse.from_dict(cancel_authorization_response_dict)

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