Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 2.19 KB

File metadata and controls

48 lines (39 loc) · 2.19 KB

Experiment

Properties

Name Type Description Notes
id str The experiment ID [optional]
key str The experiment key
name str The experiment name
description str The experiment description [optional]
maintainer_id str The ID of the member who maintains this experiment.
creation_date int
environment_key str
methodology str The results analysis approach. [optional]
data_source str The source of metric data in order to analyze results. Defaults to "launchdarkly" when not provided. [optional]
archived_date int [optional]
tags List[str] Tags for the experiment [optional]
links Dict[str, Link] The location and content type of related resources
holdout_id str The holdout ID [optional]
current_iteration IterationRep [optional]
type str The experiment type [optional]
access Access [optional]
draft_iteration IterationRep [optional]
previous_iterations List[IterationRep] Details on the previous iterations for this experiment. [optional]
analysis_config AnalysisConfigRep [optional]
mutable_fields_by_status MutableFieldsByStatusRep [optional]

Example

from launchdarkly_api.models.experiment import Experiment

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

# convert the object into a dict
experiment_dict = experiment_instance.to_dict()
# create an instance of Experiment from a dict
experiment_from_dict = Experiment.from_dict(experiment_dict)

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