A link between two Jira issues.

interface JiraIssueLink {
    id: string;
    inwardIssue?: JiraIssueRef;
    outwardIssue?: JiraIssueRef;
    self: string;
    type: JiraIssueLinkType;
}

Properties

id: string

Numeric string ID

inwardIssue?: JiraIssueRef

The inward linked issue (the issue referenced by the link)

outwardIssue?: JiraIssueRef

The outward linked issue (the issue that is the target of the link)

self: string

URL of the link resource

The link type