Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.11 KB

File metadata and controls

32 lines (25 loc) · 1.11 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]

Example

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

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

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