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

    Interface PageOfDashboards

    A page containing dashboard details.

    interface PageOfDashboards {
        dashboards?: Version3Models.Dashboard[];
        maxResults?: number;
        next?: string;
        prev?: string;
        startAt?: number;
        total?: number;
    }
    Index

    Properties

    dashboards?: Version3Models.Dashboard[]

    List of dashboards.

    maxResults?: number

    The maximum number of results that could be on the page.

    next?: string

    The URL of the next page of results, if any.

    prev?: string

    The URL of the previous page of results, if any.

    startAt?: number

    The index of the first item returned on the page.

    total?: number

    The number of results on the page.