/** * 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 { Icon } from './'; /** * The status of the item. * @export * @interface Status */ export interface Status { [key: string]: object | any; /** * Details of the icon representing the status. If not provided, no status icon displays in Jira. * @type {Icon} * @memberof Status */ icon?: Icon; /** * Indicates whether the item is resolved. If set to \"true\", the link to the issue is displayed in a strikethrough font, otherwise the link displays in normal font. * @type {boolean} * @memberof Status */ resolved?: boolean; } export declare function StatusFromJSON(json: any): Status; export declare function StatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): Status; export declare function StatusToJSON(value?: Status): any;