Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 912 Bytes

LinkType.md

File metadata and controls

32 lines (23 loc) · 912 Bytes

LinkType

Properties

Name Type Description Notes
editable bool [optional] [readonly]
inward str
name str
outward str

Example

from firefly_iii_client.models.link_type import LinkType

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

# convert the object into a dict
link_type_dict = link_type_instance.to_dict()
# create an instance of LinkType from a dict
link_type_form_dict = link_type.from_dict(link_type_dict)

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