Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1003 Bytes

LinkTypeRead.md

File metadata and controls

32 lines (23 loc) · 1003 Bytes

LinkTypeRead

Properties

Name Type Description Notes
attributes LinkType
id str
links ObjectLink
type str Immutable value

Example

from firefly_iii_client.models.link_type_read import LinkTypeRead

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

# convert the object into a dict
link_type_read_dict = link_type_read_instance.to_dict()
# create an instance of LinkTypeRead from a dict
link_type_read_form_dict = link_type_read.from_dict(link_type_read_dict)

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