Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.07 KB

File metadata and controls

28 lines (21 loc) · 1.07 KB

RandomizationSettingsRep

Properties

Name Type Description Notes
_projectId string The project ID [optional] [default to undefined]
_projectKey string The project key [optional] [default to undefined]
randomizationUnits Array<RandomizationUnitRep> An array of the randomization units in this project [optional] [default to undefined]
_creationDate number [optional] [default to undefined]
_links { [key: string]: Link; } The location and content type of related resources [optional] [default to undefined]

Example

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

const instance: RandomizationSettingsRep = {
    _projectId,
    _projectKey,
    randomizationUnits,
    _creationDate,
    _links,
};

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