/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ScopeAsResponse } from "../definitions/ScopeAsResponse"; export interface IssueTypeDetailsAsResponse { /** * The URL of these issue type details. */ self?: string; /** * The ID of the issue type. */ id?: string; /** * The description of the issue type. */ description?: string; /** * The URL of the issue type's avatar. */ iconUrl?: string; /** * The name of the issue type. */ name?: string; /** * Whether this issue type is used to create subtasks. */ subtask?: boolean; /** * The ID of the issue type's avatar. */ avatarId?: number; /** * Unique ID for next-gen projects. */ entityId?: string; /** * Hierarchy level of the issue type. */ hierarchyLevel?: number; untranslatedName?: string; /** * Details of the next-gen projects the issue type is available in. */ scope?: ScopeAsResponse; } //# sourceMappingURL=IssueTypeDetailsAsResponse.d.ts.map