Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

TagTreeNode

Children tags of tagTree

Properties

Name Type Description Notes
icon str [optional]
label str [optional]
type str Type would be either `LEVEL` or `TAG` depending on whether the tag has any child tags or not respectively. [optional]

Example

from instana_client.models.tag_tree_node import TagTreeNode

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

# convert the object into a dict
tag_tree_node_dict = tag_tree_node_instance.to_dict()
# create an instance of TagTreeNode from a dict
tag_tree_node_from_dict = TagTreeNode.from_dict(tag_tree_node_dict)

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