Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 931 Bytes

TagRead.md

File metadata and controls

32 lines (23 loc) · 931 Bytes

TagRead

Properties

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

Example

from firefly_iii_client.models.tag_read import TagRead

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

# convert the object into a dict
tag_read_dict = tag_read_instance.to_dict()
# create an instance of TagRead from a dict
tag_read_form_dict = tag_read.from_dict(tag_read_dict)

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