| Name |
Type |
Description |
Notes |
| destination |
str |
ID of the outgoing GraphEdge. |
[optional] |
| relation |
str |
Type of dependency between the source and the destination. |
[optional] |
| source |
str |
ID of the incoming GraphEdge. |
[optional] |
from instana_client.models.graph_edge import GraphEdge
# TODO update the JSON string below
json = "{}"
# create an instance of GraphEdge from a JSON string
graph_edge_instance = GraphEdge.from_json(json)
# print the JSON string representation of the object
print(GraphEdge.to_json())
# convert the object into a dict
graph_edge_dict = graph_edge_instance.to_dict()
# create an instance of GraphEdge from a dict
graph_edge_from_dict = GraphEdge.from_dict(graph_edge_dict)
[Back to Model list] [Back to API list] [Back to README]