Interface HierarchyLevel

A single hierarchy level returned by the JPO hierarchy endpoint.

Levels are ordered from lowest (0) to highest (N). Each level contains the issue types that belong to that level.

interface HierarchyLevel {
    id: number;
    issueTypeIds: string[];
    title: string;
}

Properties

Properties

id: number
issueTypeIds: string[]
title: string