Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.55 KB

File metadata and controls

33 lines (24 loc) · 1.55 KB

PaymentFinishReservationResponse

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]

Example

from clientapi_barion.models.payment_finish_reservation_response import PaymentFinishReservationResponse

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

# convert the object into a dict
payment_finish_reservation_response_dict = payment_finish_reservation_response_instance.to_dict()
# create an instance of PaymentFinishReservationResponse from a dict
payment_finish_reservation_response_from_dict = PaymentFinishReservationResponse.from_dict(payment_finish_reservation_response_dict)

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