The remote object referenced by a JiraRemoteLink.

interface JiraRemoteLinkObject {
    icon?: { link?: string; title?: string; url16x16?: string };
    status?: {
        icon?: { link?: string; title?: string; url16x16?: string };
        resolved?: boolean;
    };
    summary?: string;
    title: string;
    url: string;
}

Properties

icon?: { link?: string; title?: string; url16x16?: string }

Icon for the remote resource

status?: {
    icon?: { link?: string; title?: string; url16x16?: string };
    resolved?: boolean;
}

Status of the remote resource

summary?: string

Summary / description

title: string

Title of the remote resource

url: string

URL of the remote resource