Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 899 Bytes

File metadata and controls

30 lines (21 loc) · 899 Bytes

Topology

Properties

Name Type Description Notes
edges List[GraphEdge] [optional]
nodes List[GraphNode] [optional]

Example

from instana_client.models.topology import Topology

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

# convert the object into a dict
topology_dict = topology_instance.to_dict()
# create an instance of Topology from a dict
topology_from_dict = Topology.from_dict(topology_dict)

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