Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 951 Bytes

File metadata and controls

28 lines (21 loc) · 951 Bytes

CustomWorkflowInput

Properties

Name Type Description Notes
maintainerId string [optional] [default to undefined]
name string The workflow name [default to undefined]
description string The workflow description [optional] [default to undefined]
stages Array<StageInput> A list of the workflow stages [optional] [default to undefined]
templateKey string The template key [optional] [default to undefined]

Example

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

const instance: CustomWorkflowInput = {
    maintainerId,
    name,
    description,
    stages,
    templateKey,
};

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