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

    Interface PagedQueue

    interface PagedQueue {
        Expands?: string[];
        isLastPage?: boolean;
        limit?: number;
        Links?: PagedLink;
        size?: number;
        start?: number;
        values?: Queue[];
    }
    Index

    Properties

    Expands?: string[]
    isLastPage?: boolean

    Indicates if this is the last page of records (true) or not (false).

    limit?: number

    Number of items to be returned per page, up to the maximum set for these objects in the current implementation.

    Links?: PagedLink
    size?: number

    Number of items returned in the page.

    start?: number

    Index of the first item returned in the page.

    values?: Queue[]

    Details of the items included in the page.