Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.35 KB

File metadata and controls

32 lines (23 loc) · 1.35 KB

AiConfigsLegacyExperimentRep

Properties

Name Type Description Notes
metric_key str [optional]
metric AiConfigsMetricListingRep [optional]
environments List[str] [optional]
environment_settings Dict[str, AiConfigsExperimentEnvironmentSettingRep] [optional]

Example

from launchdarkly_api.models.ai_configs_legacy_experiment_rep import AiConfigsLegacyExperimentRep

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

# convert the object into a dict
ai_configs_legacy_experiment_rep_dict = ai_configs_legacy_experiment_rep_instance.to_dict()
# create an instance of AiConfigsLegacyExperimentRep from a dict
ai_configs_legacy_experiment_rep_from_dict = AiConfigsLegacyExperimentRep.from_dict(ai_configs_legacy_experiment_rep_dict)

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