Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.08 KB

File metadata and controls

32 lines (25 loc) · 1.08 KB

DependentExperimentRep

Properties

Name Type Description Notes
key string The experiment key [default to undefined]
name string The experiment name [default to undefined]
environmentId string The environment ID [default to undefined]
environmentKey string The environment key [default to undefined]
creationDate number [default to undefined]
archivedDate number [optional] [default to undefined]
_links { [key: string]: Link; } The location and content type of related resources [default to undefined]

Example

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

const instance: DependentExperimentRep = {
    key,
    name,
    environmentId,
    environmentKey,
    creationDate,
    archivedDate,
    _links,
};

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