Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.51 KB

File metadata and controls

40 lines (31 loc) · 2.51 KB

DetailedPaymentTransaction

Properties

Name Type Description Notes
transaction_id str 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. [optional]
payer UserInformation The user that paid the transaction. [optional]
payee UserInformation The user that received the money from the transaction. [optional]
comment str The comment of the transaction set by the shop when the payment was created. [optional]
status str [optional]
transaction_type DetailedPaymentTransactionTransactionType [optional]
items List[Item] The items included in the transaction. [optional]
related_id str 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

from clientapi_barion.models.detailed_payment_transaction import DetailedPaymentTransaction

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

# convert the object into a dict
detailed_payment_transaction_dict = detailed_payment_transaction_instance.to_dict()
# create an instance of DetailedPaymentTransaction from a dict
detailed_payment_transaction_from_dict = DetailedPaymentTransaction.from_dict(detailed_payment_transaction_dict)

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