interface WorkflowSchemeReadResponse {
    defaultWorkflow?: WorkflowMetadataRestModel;
    description?: null | string;
    id: string;
    name: string;
    projectIdsUsingScheme?: null | (null | string)[];
    scope: WorkflowScope;
    taskId?: null | string;
    version: DocumentVersion;
    workflowsForIssueTypes: WorkflowMetadataAndIssueTypeRestModel[];
}

Properties

defaultWorkflow?: WorkflowMetadataRestModel

Workflow metadata and usage detail.

description?: null | string

The description of the workflow scheme.

id: string

The ID of the workflow scheme.

name: string

The name of the workflow scheme.

projectIdsUsingScheme?: null | (null | string)[]

Deprecated. See the deprecation notice for details.

The IDs of projects using the workflow scheme.

The scope of the workflow.

taskId?: null | string

Indicates if there's an asynchronous task for this workflow scheme.

The current version details of this workflow scheme.

workflowsForIssueTypes: WorkflowMetadataAndIssueTypeRestModel[]

Mappings from workflows to issue types.