An issue suggested for use in the issue picker auto-completion.

interface SuggestedIssue {
    id?: number;
    img?: string;
    key?: string;
    keyHtml?: string;
    summary?: string;
    summaryText?: string;
}

Properties

id?: number

The ID of the issue.

img?: string

The URL of the issue type's avatar.

key?: string

The key of the issue.

keyHtml?: string

The key of the issue in HTML format.

summary?: string

The phrase containing the query string in HTML format, with the string highlighted with HTML bold tags.

summaryText?: string

The phrase containing the query string, as plain text.