Skip to content

Latest commit

 

History

History
44 lines (37 loc) · 1.53 KB

File metadata and controls

44 lines (37 loc) · 1.53 KB

ConditionOutput

Properties

Name Type Description Notes
_id string [default to undefined]
kind string [optional] [default to undefined]
_execution ExecutionOutput [default to undefined]
scheduleKind string [optional] [default to undefined]
executionDate number [optional] [default to undefined]
waitDuration number [optional] [default to undefined]
waitDurationUnit string [optional] [default to undefined]
description string [default to undefined]
notifyMemberIds Array<string> [default to undefined]
allReviews Array<ReviewOutput> [default to undefined]
reviewStatus string [default to undefined]
appliedDate number [optional] [default to undefined]
creationConfig { [key: string]: any; } [optional] [default to undefined]

Example

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

const instance: ConditionOutput = {
    _id,
    kind,
    _execution,
    scheduleKind,
    executionDate,
    waitDuration,
    waitDurationUnit,
    description,
    notifyMemberIds,
    allReviews,
    reviewStatus,
    appliedDate,
    creationConfig,
};

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