A collection of agent graphs
| Name | Type | Description | Notes |
|---|---|---|---|
| links | PaginatedLinks | [optional] | |
| items | List[AgentGraph] | ||
| total_count | int |
from launchdarkly_api.models.agent_graphs import AgentGraphs
# TODO update the JSON string below
json = "{}"
# create an instance of AgentGraphs from a JSON string
agent_graphs_instance = AgentGraphs.from_json(json)
# print the JSON string representation of the object
print(AgentGraphs.to_json())
# convert the object into a dict
agent_graphs_dict = agent_graphs_instance.to_dict()
# create an instance of AgentGraphs from a dict
agent_graphs_from_dict = AgentGraphs.from_dict(agent_graphs_dict)