/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { StatusDetails } from './'; /** * Status details for an issue type. * @export * @interface IssueTypeWithStatus */ export interface IssueTypeWithStatus { /** * List of status details for the issue type. * @type {Array} * @memberof IssueTypeWithStatus */ readonly statuses: Array; /** * The ID of the issue type. * @type {string} * @memberof IssueTypeWithStatus */ readonly id: string; /** * The URL of the issue type\'s status details. * @type {string} * @memberof IssueTypeWithStatus */ readonly self: string; /** * Indicates whether this issue type represents subtasks. * @type {boolean} * @memberof IssueTypeWithStatus */ readonly subtask: boolean; /** * The name of the issue type. * @type {string} * @memberof IssueTypeWithStatus */ readonly name: string; } export declare function IssueTypeWithStatusFromJSON(json: any): IssueTypeWithStatus; export declare function IssueTypeWithStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueTypeWithStatus; export declare function IssueTypeWithStatusToJSON(value?: IssueTypeWithStatus): any;