Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.63 KB

File metadata and controls

40 lines (33 loc) · 1.63 KB

ExperimentPost

Properties

Name Type Description Notes
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 [optional] [default to undefined]
key string The experiment key [default to undefined]
iteration IterationInput [default to undefined]
holdoutId string The ID of the holdout [optional] [default to undefined]
tags Array<string> Tags for the experiment [optional] [default to undefined]
methodology string The results analysis approach. [optional] [default to undefined]
analysisConfig AnalysisConfigInput [optional] [default to undefined]
dataSource string The source of metric data in order to analyze results. Defaults to &quot;launchdarkly&quot; when not provided. [optional] [default to undefined]
type string The type of experiment. [optional] [default to undefined]

Example

import { ExperimentPost } from 'launchdarkly-api-typescript';

const instance: ExperimentPost = {
    name,
    description,
    maintainerId,
    key,
    iteration,
    holdoutId,
    tags,
    methodology,
    analysisConfig,
    dataSource,
    type,
};

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