Interface JiraUserContributionMetrics

Counted contribution row for one user.

interface JiraUserContributionMetrics {
    assigned?: number;
    created?: number;
    reported?: number;
    updated?: number;
    username: string;
    worklogIssues?: number;
}

Properties

assigned?: number

Issues currently assigned to the user within the scoped issue set

created?: number

Issues created by the user in the scoped period

reported?: number

Issues reported by the user in the scoped period

updated?: number

Issues touched by the user according to Jira's updatedBy() JQL function

username: string

Jira username/user key supplied by the caller

worklogIssues?: number

Issues with worklogs by the user in the scoped period