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

    Interface IssueTypeWithStatus

    Status details for an issue type.

    interface IssueTypeWithStatus {
        id: string;
        name: string;
        self: string;
        statuses: Version3Models.StatusDetails[];
        subtask: boolean;
    }
    Index

    Properties

    id: string

    The ID of the issue type.

    name: string

    The name of the issue type.

    self: string

    The URL of the issue type's status details.

    List of status details for the issue type.

    subtask: boolean

    Whether this issue type represents subtasks.