interface IssueTypeCreateBean {
    description?: string;
    hierarchyLevel?: number;
    name: string;
    type?: "standard" | "subtask";
}

Properties

description?: string

The description of the issue type.

hierarchyLevel?: number

The hierarchy level of the issue type. Use:

  • -1 for Subtask.
  • 0 for Base.

Defaults to 0.

name: string

The unique name for the issue type. The maximum length is 60 characters.

type?: "standard" | "subtask"

Deprecated. Use hierarchyLevel instead. See the deprecation notice for details.

Whether the issue type is subtype or standard. Defaults to standard.