Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.12 KB

File metadata and controls

36 lines (29 loc) · 1.12 KB

WorkflowTemplateOutput

Properties

Name Type Description Notes
_id string [default to undefined]
_key string [default to undefined]
name string [optional] [default to undefined]
_creationDate number [default to undefined]
_ownerId string [default to undefined]
_maintainerId string [default to undefined]
_links { [key: string]: Link; } [default to undefined]
description string [optional] [default to undefined]
stages Array<StageOutput> [optional] [default to undefined]

Example

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

const instance: WorkflowTemplateOutput = {
    _id,
    _key,
    name,
    _creationDate,
    _ownerId,
    _maintainerId,
    _links,
    description,
    stages,
};

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