/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { DashboardAsResponse } from "../definitions/DashboardAsResponse"; export interface PageOfDashboardsAsResponse { /** * List of dashboards. */ dashboards?: Array; /** * The maximum number of results that could be on the page. */ maxResults?: number; /** * The URL of the next page of results, if any. */ next?: string; /** * The URL of the previous page of results, if any. */ prev?: string; /** * The index of the first item returned on the page. */ startAt?: number; /** * The number of results on the page. */ total?: number; } //# sourceMappingURL=PageOfDashboardsAsResponse.d.ts.map