Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.24 KB

File metadata and controls

34 lines (27 loc) · 1.24 KB

FeatureFlagScheduledChange

Properties

Name Type Description Notes
_id string [default to undefined]
_creationDate number [default to undefined]
_maintainerId string The ID of the scheduled change maintainer [default to undefined]
_version number Version of the scheduled change [default to undefined]
executionDate number [default to undefined]
instructions Array<{ [key: string]: any; }> [default to undefined]
conflicts any Details on any conflicting scheduled changes [optional] [default to undefined]
_links { [key: string]: Link; } The location and content type of related resources [optional] [default to undefined]

Example

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

const instance: FeatureFlagScheduledChange = {
    _id,
    _creationDate,
    _maintainerId,
    _version,
    executionDate,
    instructions,
    conflicts,
    _links,
};

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