Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1002 Bytes

File metadata and controls

32 lines (23 loc) · 1002 Bytes

AgentGraphs

A collection of agent graphs

Properties

Name Type Description Notes
links PaginatedLinks [optional]
items List[AgentGraph]
total_count int

Example

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)

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