Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1021 Bytes

File metadata and controls

30 lines (21 loc) · 1021 Bytes

AgentOptimizationJudge

Properties

Name Type Description Notes
key str
threshold float

Example

from launchdarkly_api.models.agent_optimization_judge import AgentOptimizationJudge

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

# convert the object into a dict
agent_optimization_judge_dict = agent_optimization_judge_instance.to_dict()
# create an instance of AgentOptimizationJudge from a dict
agent_optimization_judge_from_dict = AgentOptimizationJudge.from_dict(agent_optimization_judge_dict)

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