/** * 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 issue suggested for use in the issue picker auto-completion. * @export * @interface SuggestedIssue */ export interface SuggestedIssue { /** * The id of the issue. * @type {number} * @memberof SuggestedIssue */ readonly id?: number; /** * The URL of the issue type\'s avatar. * @type {string} * @memberof SuggestedIssue */ readonly img?: string; /** * The phrase containing the query string in HTML format, with the string highlighted with HTML bold tags. * @type {string} * @memberof SuggestedIssue */ readonly summary?: string; /** * The phrase containing the query string, as plain text. * @type {string} * @memberof SuggestedIssue */ readonly summaryText?: string; /** * The key of the issue. * @type {string} * @memberof SuggestedIssue */ readonly key?: string; /** * The key of the issue in HTML format. * @type {string} * @memberof SuggestedIssue */ readonly keyHtml?: string; } export declare function SuggestedIssueFromJSON(json: any): SuggestedIssue; export declare function SuggestedIssueFromJSONTyped(json: any, ignoreDiscriminator: boolean): SuggestedIssue; export declare function SuggestedIssueToJSON(value?: SuggestedIssue): any;