Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.67 KB

File metadata and controls

38 lines (31 loc) · 1.67 KB

ConditionInput

Properties

Name Type Description Notes
scheduleKind string [optional] [default to undefined]
executionDate number [optional] [default to undefined]
waitDuration number For workflow stages whose scheduled execution is relative, how far in the future the stage should start. [optional] [default to undefined]
waitDurationUnit string [optional] [default to undefined]
executeNow boolean Whether the workflow stage should be executed immediately [optional] [default to undefined]
description string A description of the approval required for this stage [optional] [default to undefined]
notifyMemberIds Array<string> A list of member IDs for the members to request approval from for this stage [optional] [default to undefined]
notifyTeamKeys Array<string> A list of team keys for the teams to request approval from for this stage [optional] [default to undefined]
integrationConfig { [key: string]: any; } [optional] [default to undefined]
kind string [optional] [default to undefined]

Example

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

const instance: ConditionInput = {
    scheduleKind,
    executionDate,
    waitDuration,
    waitDurationUnit,
    executeNow,
    description,
    notifyMemberIds,
    notifyTeamKeys,
    integrationConfig,
    kind,
};

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