Name |
Type |
Description |
Notes |
pos_transaction_id |
str |
Unique identifier of the transaction at the shop. |
[optional] |
transaction_id |
str |
Unique identifier of the transaction generated by Barion. |
[optional] |
status |
str |
|
[optional] |
currency |
str |
The currency of the payment. Must be supplied in ISO 4217 format. This affects all transactions included in the payment; it is not possible to define multiple transactions in different currencies. |
[optional] |
transaction_time |
datetime |
Timestamp of the transaction. |
[optional] |
from clientapi_barion.models.processed_transaction import ProcessedTransaction
# TODO update the JSON string below
json = "{}"
# create an instance of ProcessedTransaction from a JSON string
processed_transaction_instance = ProcessedTransaction.from_json(json)
# print the JSON string representation of the object
print(ProcessedTransaction.to_json())
# convert the object into a dict
processed_transaction_dict = processed_transaction_instance.to_dict()
# create an instance of ProcessedTransaction from a dict
processed_transaction_from_dict = ProcessedTransaction.from_dict(processed_transaction_dict)
[Back to Model list] [Back to API list] [Back to README]