Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.84 KB

File metadata and controls

34 lines (25 loc) · 1.84 KB

PaymentFinishReservationResponseWithErrorMessages

Properties

Name Type Description Notes
is_successful bool Result of the transaction. [optional]
payment_id str The identifier of the newly initialized payment, generated by the Barion system. [optional]
payment_request_id str The payment identifier supplied by the API caller in the request. [optional]
status str The status of the payment in the Barion system. [optional]
transactions List[ProcessedTransaction] [optional]
errors List[Error] [optional]

Example

from clientapi_barion.models.payment_finish_reservation_response_with_error_messages import PaymentFinishReservationResponseWithErrorMessages

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

# convert the object into a dict
payment_finish_reservation_response_with_error_messages_dict = payment_finish_reservation_response_with_error_messages_instance.to_dict()
# create an instance of PaymentFinishReservationResponseWithErrorMessages from a dict
payment_finish_reservation_response_with_error_messages_from_dict = PaymentFinishReservationResponseWithErrorMessages.from_dict(payment_finish_reservation_response_with_error_messages_dict)

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