/** * 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. */ /** * The application the linked item is in. * @export * @interface Application */ export interface Application { [key: string]: object | any; /** * The name-spaced type of the application, used by registered rendering apps. * @type {string} * @memberof Application */ type?: string; /** * The name of the application. Used in conjunction with the (remote) object icon title to display a tooltip for the link\'s icon. The tooltip takes the format \"\\[application name\\] icon title\". Blank items are excluded from the tooltip title. If both items are blank, the icon tooltop displays as \"Web Link\". Grouping and sorting of links may place links without an application name last. * @type {string} * @memberof Application */ name?: string; } export declare function ApplicationFromJSON(json: any): Application; export declare function ApplicationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Application; export declare function ApplicationToJSON(value?: Application): any;