/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { AnalyticsDashboard } from './AnalyticsDashboard'; /** * * @export * @interface ListDashboardsResponse */ export interface ListDashboardsResponse { /** * * @type {Array} * @memberof ListDashboardsResponse */ dashboards?: Array; } /** * Check if a given object implements the ListDashboardsResponse interface. */ export declare function instanceOfListDashboardsResponse(value: object): value is ListDashboardsResponse; export declare function ListDashboardsResponseFromJSON(json: any): ListDashboardsResponse; export declare function ListDashboardsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListDashboardsResponse; export declare function ListDashboardsResponseToJSON(json: any): ListDashboardsResponse; export declare function ListDashboardsResponseToJSONTyped(value?: ListDashboardsResponse | null, ignoreDiscriminator?: boolean): any;