Watcher information for a Jira issue.

interface JiraWatchers {
    isWatching: boolean;
    self: string;
    watchCount: number;
    watchers?: JiraUser[];
}

Properties

isWatching: boolean

Whether the authenticated user is watching the issue

self: string

URL of the watchers resource

watchCount: number

Total number of watchers

watchers?: JiraUser[]

Users watching the issue (only returned when expanding watchers)