Jira.js - Jira Cloud API library
    Preparing search index...

    Interface Fields

    Key fields from the linked issue.

    interface Fields {
        aggregatetimespent: null | number;
        assignee: Version3Models.UserDetails;
        attachment: Version3Models.Attachment[];
        comment: {
            comments: Version3Models.Comment[];
            maxResults: number;
            self: string;
            startAt: number;
            total: number;
        };
        components: Version3Models.ProjectComponent[];
        created: string;
        creator: Version3Models.User;
        description?: Document;
        duedate: null
        | string;
        environment: null | Version3Models.RichText;
        fixVersions: Version3Models.FixVersion[];
        issuelinks: Version3Models.IssueLink[];
        issuerestriction?: { issuerestrictions: any; shouldDisplay: boolean };
        issuetype?: Version3Models.IssueTypeDetails;
        issueType?: Version3Models.IssueTypeDetails;
        labels: string[];
        lastViewed: null | string;
        parent?: Version3Models.Issue;
        priority: Version3Models.Priority;
        reporter: Version3Models.User;
        resolution: null | Version3Models.Resolution;
        resolutiondate: null | string;
        status: Version3Models.StatusDetails;
        subtasks: Version3Models.Issue[];
        summary: string;
        timeoriginalestimate?: any;
        timespent: null | number;
        timetracking: Version3Models.TimeTrackingDetails;
        updated: string;
        votes: Version3Models.Votes & { voters: never };
        watches: Version3Models.Watchers;
        worklog: {
            maxResults: number;
            startAt: number;
            total: number;
            worklogs: Version3Models.Worklog[];
        };
        workratio: number;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    aggregatetimespent: null | number

    The estimate of how much longer working on the issue will take, in seconds.

    The assignee of the linked issue.

    comment: {
        comments: Version3Models.Comment[];
        maxResults: number;
        self: string;
        startAt: number;
        total: number;
    }
    created: string
    description?: Document
    duedate: null | string

    The time the issue is due.

    environment: null | Version3Models.RichText
    fixVersions: Version3Models.FixVersion[]

    The list of versions where the issue was fixed.

    issuerestriction?: { issuerestrictions: any; shouldDisplay: boolean }

    The type of the linked issue.

    The type of the linked issue.

    labels: string[]
    lastViewed: null | string

    The issue parent.

    The priority of the linked issue.

    resolution: null | Version3Models.Resolution

    The resolution of the issue.

    resolutiondate: null | string

    The time the issue was resolved at.

    The status of the linked issue.

    subtasks: Version3Models.Issue[]
    summary: string

    The summary description of the linked issue.

    timeoriginalestimate?: any
    timespent: null | number

    The time that was spent working on the issue, in seconds.

    The time tracking of the linked issue.

    updated: string
    votes: Version3Models.Votes & { voters: never }
    worklog: {
        maxResults: number;
        startAt: number;
        total: number;
        worklogs: Version3Models.Worklog[];
    }
    workratio: number