You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unique identifier of the transaction generated by the Barion system.
[optional]
pos_transaction_id
str
The unique identifier of the transaction at the shop that started the payment.
[optional]
transaction_time
datetime
The timestamp of the transaction.
[optional]
total
float
The original amount of the transaction. This is determined upon payment creation and is not affected by any later events.
[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.
The identifier of the related transaction, if it exists. For example, additional fee transactions have the identifier of the original payment transaction in this field.
[optional]
Example
fromclientapi_barion.models.detailed_payment_transactionimportDetailedPaymentTransaction# TODO update the JSON string belowjson="{}"# create an instance of DetailedPaymentTransaction from a JSON stringdetailed_payment_transaction_instance=DetailedPaymentTransaction.from_json(json)
# print the JSON string representation of the objectprint(DetailedPaymentTransaction.to_json())
# convert the object into a dictdetailed_payment_transaction_dict=detailed_payment_transaction_instance.to_dict()
# create an instance of DetailedPaymentTransaction from a dictdetailed_payment_transaction_from_dict=DetailedPaymentTransaction.from_dict(detailed_payment_transaction_dict)