/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ScopeAsResponse } from "../definitions/ScopeAsResponse"; import { FieldMetadataAsResponse } from "../definitions/FieldMetadataAsResponse"; export interface IssueTypeIssueCreateMetadataAsResponse { /** * 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; /** * Expand options that include additional issue type metadata details in the response. */ expand?: string; /** * List of the fields available when creating an issue for the issue type. */ fields?: { [x: string]: FieldMetadataAsResponse; }; } //# sourceMappingURL=IssueTypeIssueCreateMetadataAsResponse.d.ts.map