Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.49 KB

File metadata and controls

40 lines (33 loc) · 1.49 KB

ReleasePhase

Properties

Name Type Description Notes
_id string The phase ID [default to undefined]
_name string The release phase name [default to undefined]
complete boolean Whether this phase is complete [default to undefined]
_creationDate number [default to undefined]
_completionDate number [optional] [default to undefined]
_completedBy CompletedBy [optional] [default to undefined]
_audiences Array<ReleaseAudience> A logical grouping of one or more environments that share attributes for rolling out changes [default to undefined]
status string [optional] [default to undefined]
started boolean Whether or not this phase has started [optional] [default to undefined]
_startedDate number [optional] [default to undefined]
configuration object [optional] [default to undefined]

Example

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

const instance: ReleasePhase = {
    _id,
    _name,
    complete,
    _creationDate,
    _completionDate,
    _completedBy,
    _audiences,
    status,
    started,
    _startedDate,
    configuration,
};

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