| Name | Type | Description | Notes |
|---|---|---|---|
| edges | List[GraphEdge] | [optional] | |
| nodes | List[GraphNode] | [optional] |
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)