Details of an issue type hierarchy level.

interface ProjectIssueTypesHierarchyLevel {
    entityId?: string;
    issueTypes?: IssueTypeInfo[];
    level?: number;
    name?: string;
}

Properties

entityId?: string

The ID of the issue type hierarchy level. This property is deprecated, see Change notice: Removing hierarchy level IDs from next-gen APIs.

issueTypes?: IssueTypeInfo[]

The list of issue types in the hierarchy level.

level?: number

The level of the issue type hierarchy level.

name?: string

The name of the issue type hierarchy level.