Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.48 KB

TransactionLinkStore.md

File metadata and controls

33 lines (24 loc) · 1.48 KB

TransactionLinkStore

Properties

Name Type Description Notes
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.

Example

from firefly_iii_client.models.transaction_link_store import TransactionLinkStore

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

# convert the object into a dict
transaction_link_store_dict = transaction_link_store_instance.to_dict()
# create an instance of TransactionLinkStore from a dict
transaction_link_store_form_dict = transaction_link_store.from_dict(transaction_link_store_dict)

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