/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { StatusDetailsAsResponse } from "../definitions/StatusDetailsAsResponse"; export interface IssueTypeWithStatusAsResponse { /** * The ID of the issue type. */ id: string; /** * The name of the issue type. */ name: string; /** * The URL of the issue type's status details. */ self: string; /** * List of status details for the issue type. */ statuses: Array; /** * Whether this issue type represents subtasks. */ subtask: boolean; } //# sourceMappingURL=IssueTypeWithStatusAsResponse.d.ts.map