Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

AgentOptimizationRuns

Properties

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

Example

from launchdarkly_api.models.agent_optimization_runs import AgentOptimizationRuns

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

# convert the object into a dict
agent_optimization_runs_dict = agent_optimization_runs_instance.to_dict()
# create an instance of AgentOptimizationRuns from a dict
agent_optimization_runs_from_dict = AgentOptimizationRuns.from_dict(agent_optimization_runs_dict)

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