Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.09 KB

File metadata and controls

34 lines (27 loc) · 1.09 KB

CreateWorkflowTemplateInput

Properties

Name Type Description Notes
key string [default to undefined]
name string [optional] [default to undefined]
description string [optional] [default to undefined]
workflowId string [optional] [default to undefined]
stages Array<StageInput> [optional] [default to undefined]
projectKey string [optional] [default to undefined]
environmentKey string [optional] [default to undefined]
flagKey string [optional] [default to undefined]

Example

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

const instance: CreateWorkflowTemplateInput = {
    key,
    name,
    description,
    workflowId,
    stages,
    projectKey,
    environmentKey,
    flagKey,
};

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