Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.03 KB

File metadata and controls

33 lines (24 loc) · 1.03 KB

GraphNode

Properties

Name Type Description Notes
data Dict[str, object] [optional]
entity_id EntityId [optional]
id str GraphNode ID. [optional]
label str Label of the entity [optional]
plugin str Name of the plugin [optional]

Example

from instana_client.models.graph_node import GraphNode

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

# convert the object into a dict
graph_node_dict = graph_node_instance.to_dict()
# create an instance of GraphNode from a dict
graph_node_from_dict = GraphNode.from_dict(graph_node_dict)

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