The linked item.

interface RemoteObject {
    icon?: Icon;
    status?: Status;
    summary?: string;
    title: string;
    url: string;
}

Hierarchy

  • Record<string, unknown>
    • RemoteObject

Properties

icon?: Icon

Details of the icon for the item. If no icon is defined, the default link icon is used in Jira.

status?: Status

The status of the item.

summary?: string

The summary details of the item.

title: string

The title of the item.

url: string

The URL of the item.