Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

PayeeTransactionToFinish.md

File metadata and controls

31 lines (22 loc) · 1.21 KB

PayeeTransactionToFinish

Properties

Name Type Description Notes
transaction_id str The unique identifier of the payee transaction in the Barion system.
total float The total amount of the payee transaction.
comment str Comment of the payee transaction. [optional]

Example

from clientapi_barion.models.payee_transaction_to_finish import PayeeTransactionToFinish

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

# convert the object into a dict
payee_transaction_to_finish_dict = payee_transaction_to_finish_instance.to_dict()
# create an instance of PayeeTransactionToFinish from a dict
payee_transaction_to_finish_from_dict = PayeeTransactionToFinish.from_dict(payee_transaction_to_finish_dict)

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