Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.52 KB

TransactionLink.md

File metadata and controls

35 lines (26 loc) · 1.52 KB

TransactionLink

Properties

Name Type Description Notes
created_at datetime [optional] [readonly]
inward_id str The inward transaction transaction_journal_id for the link. This becomes the 'is paid by' transaction of the set.
link_type_id str The link type ID to use. You can also use the link_type_name field.
link_type_name str The link type name to use. You can also use the link_type_id field. [optional]
notes str Optional. Some notes. [optional]
outward_id str The outward transaction transaction_journal_id for the link. This becomes the 'pays for' transaction of the set.
updated_at datetime [optional] [readonly]

Example

from firefly_iii_client.models.transaction_link import TransactionLink

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

# convert the object into a dict
transaction_link_dict = transaction_link_instance.to_dict()
# create an instance of TransactionLink from a dict
transaction_link_form_dict = transaction_link.from_dict(transaction_link_dict)

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