/** * 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. */ /** * An icon. * @export * @interface IconBean */ export interface IconBean { /** * The URL of the tooltip, used only for a status icon. * @type {string} * @memberof IconBean */ link?: string; /** * The URL of a 16x16 pixel icon. * @type {string} * @memberof IconBean */ url16x16?: string; /** * The title of the icon, for use as a tooltip on the icon. * @type {string} * @memberof IconBean */ title?: string; } export declare function IconBeanFromJSON(json: any): IconBean; export declare function IconBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): IconBean; export declare function IconBeanToJSON(value?: IconBean): any;