Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 896 Bytes

File metadata and controls

32 lines (23 loc) · 896 Bytes

Tag

A tag

Properties

Name Type Description Notes
name str The name of the tag
color_id int Id of the color [optional]
custom bool Is this a tag custom or not [optional] [default to True]

Example

from eliona.api_client2.models.tag import Tag

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

# convert the object into a dict
tag_dict = tag_instance.to_dict()
# create an instance of Tag from a dict
tag_from_dict = Tag.from_dict(tag_dict)

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