The type of a link between two Jira issues.

interface JiraIssueLinkType {
    id: string;
    inward: string;
    name: string;
    outward: string;
    self?: string;
}

Properties

id: string

Numeric string ID

inward: string

Inward description (e.g. 'is blocked by')

name: string

Machine-readable name (e.g. 'Blocks')

outward: string

Outward description (e.g. 'blocks')

self?: string

URL of the link type resource