Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 992 Bytes

File metadata and controls

31 lines (22 loc) · 992 Bytes

LinkTypeArray

Properties

Name Type Description Notes
data List[LinkTypeRead]
links PageLink
meta Meta

Example

from firefly_iii_client.models.link_type_array import LinkTypeArray

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

# convert the object into a dict
link_type_array_dict = link_type_array_instance.to_dict()
# create an instance of LinkTypeArray from a dict
link_type_array_from_dict = LinkTypeArray.from_dict(link_type_array_dict)

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