Name |
Type |
Description |
Notes |
payment_id |
str |
The identifier of the formerly initialized and authenticated payment, generated by the Barion system. |
[optional] |
from clientapi_barion.models.payment_complete_request import PaymentCompleteRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PaymentCompleteRequest from a JSON string
payment_complete_request_instance = PaymentCompleteRequest.from_json(json)
# print the JSON string representation of the object
print(PaymentCompleteRequest.to_json())
# convert the object into a dict
payment_complete_request_dict = payment_complete_request_instance.to_dict()
# create an instance of PaymentCompleteRequest from a dict
payment_complete_request_from_dict = PaymentCompleteRequest.from_dict(payment_complete_request_dict)
[Back to Model list] [Back to API list] [Back to README]