| Name |
Type |
Description |
Notes |
| _id |
string |
The experiment ID |
[optional] [default to undefined] |
| key |
string |
The experiment key |
[default to undefined] |
| name |
string |
The experiment name |
[default to undefined] |
| description |
string |
The experiment description |
[optional] [default to undefined] |
| _maintainerId |
string |
The ID of the member who maintains this experiment. |
[default to undefined] |
| _creationDate |
number |
|
[default to undefined] |
| environmentKey |
string |
|
[default to undefined] |
| methodology |
string |
The results analysis approach. |
[optional] [default to undefined] |
| dataSource |
string |
The source of metric data in order to analyze results. Defaults to "launchdarkly" when not provided. |
[optional] [default to undefined] |
| archivedDate |
number |
|
[optional] [default to undefined] |
| tags |
Array<string> |
Tags for the experiment |
[optional] [default to undefined] |
| _links |
{ [key: string]: Link; } |
The location and content type of related resources |
[default to undefined] |
| holdoutId |
string |
The holdout ID |
[optional] [default to undefined] |
| currentIteration |
IterationRep |
|
[optional] [default to undefined] |
| type |
string |
The experiment type |
[optional] [default to undefined] |
| _access |
Access |
|
[optional] [default to undefined] |
| draftIteration |
IterationRep |
|
[optional] [default to undefined] |
| previousIterations |
Array<IterationRep> |
Details on the previous iterations for this experiment. |
[optional] [default to undefined] |
| analysisConfig |
AnalysisConfigRep |
|
[optional] [default to undefined] |
| mutableFieldsByStatus |
MutableFieldsByStatusRep |
|
[optional] [default to undefined] |
import { Experiment } from 'launchdarkly-api-typescript';
const instance: Experiment = {
_id,
key,
name,
description,
_maintainerId,
_creationDate,
environmentKey,
methodology,
dataSource,
archivedDate,
tags,
_links,
holdoutId,
currentIteration,
type,
_access,
draftIteration,
previousIterations,
analysisConfig,
mutableFieldsByStatus,
};
[Back to Model list] [Back to API list] [Back to README]