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

    Interface PageComponentWithIssueCount

    A page of items.

    interface PageComponentWithIssueCount {
        isLast?: boolean;
        maxResults?: number;
        nextPage?: string;
        self?: string;
        startAt?: number;
        total?: number;
        values?: Version3Models.ComponentWithIssueCount[];
    }
    Index

    Properties

    isLast?: boolean

    Whether this is the last page.

    maxResults?: number

    The maximum number of items that could be returned.

    nextPage?: string

    If there is another page of results, the URL of the next page.

    self?: string

    The URL of the page.

    startAt?: number

    The index of the first item returned.

    total?: number

    The number of items returned.

    The list of items.