Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 918 Bytes

LinkTypeSingle.md

File metadata and controls

29 lines (20 loc) · 918 Bytes

LinkTypeSingle

Properties

Name Type Description Notes
data LinkTypeRead

Example

from firefly_iii_client.models.link_type_single import LinkTypeSingle

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

# convert the object into a dict
link_type_single_dict = link_type_single_instance.to_dict()
# create an instance of LinkTypeSingle from a dict
link_type_single_form_dict = link_type_single.from_dict(link_type_single_dict)

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