Jira.js - Jira Cloud API library
    Preparing search index...

    Interface SetWorkflowSchemeDraftIssueType

    Details about the mapping between an issue type and a workflow.

    interface SetWorkflowSchemeDraftIssueType {
        details?: {
            issueType?: string;
            updateDraftIfNeeded?: boolean;
            workflow?: string;
        };
        id: number;
        issueType: string;
        updateDraftIfNeeded?: boolean;
        workflow?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    details?: {
        issueType?: string;
        updateDraftIfNeeded?: boolean;
        workflow?: string;
    }

    Details about the mapping between an issue type and a workflow.

    Type declaration

    • OptionalissueType?: string

      The ID of the issue type. Not required if updating the issue type-workflow mapping.

    • OptionalupdateDraftIfNeeded?: boolean

      Set to true to create or update the draft of a workflow scheme and update the mapping in the draft, when the workflow scheme cannot be edited. Defaults to false. Only applicable when updating the workflow-issue types mapping.

    • Optionalworkflow?: string

      The name of the workflow.

    id: number

    The ID of the workflow scheme that the draft belongs to.

    issueType: string

    The ID of the issue type.

    updateDraftIfNeeded?: boolean

    Set to true to create or update the draft of a workflow scheme and update the mapping in the draft, when the workflow scheme cannot be edited. Defaults to false. Only applicable when updating the workflow-issue types mapping.

    workflow?: string

    The name of the workflow.