Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 910 Bytes

File metadata and controls

24 lines (17 loc) · 910 Bytes

ExperimentCollectionRep

Properties

Name Type Description Notes
items Array<Experiment> An array of experiments [default to undefined]
total_count number The total number of experiments in this project and environment. Does not include legacy experiments. [optional] [default to undefined]
_links { [key: string]: Link; } The location and content type of related resources [optional] [default to undefined]

Example

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

const instance: ExperimentCollectionRep = {
    items,
    total_count,
    _links,
};

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