interface IssueLimitReportResponseBean {
    issuesApproachingLimit?: {
        [key: string]: {
            [key: string]: number;
        };
    };
    issuesBreachingLimit?: {
        [key: string]: {
            [key: string]: number;
        };
    };
    limits?: {
        [key: string]: number;
    };
}

Properties

issuesApproachingLimit?: {
    [key: string]: {
        [key: string]: number;
    };
}

A list of ids of issues approaching the limit and their field count

issuesBreachingLimit?: {
    [key: string]: {
        [key: string]: number;
    };
}

A list of ids of issues breaching the limit and their field count

limits?: {
    [key: string]: number;
}

The fields and their defined limits