/** * 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 UpdateDashboardResponse */ export interface UpdateDashboardResponse { /** * * @type {AnalyticsDashboard} * @memberof UpdateDashboardResponse */ dashboard?: AnalyticsDashboard; } /** * Check if a given object implements the UpdateDashboardResponse interface. */ export declare function instanceOfUpdateDashboardResponse(value: object): value is UpdateDashboardResponse; export declare function UpdateDashboardResponseFromJSON(json: any): UpdateDashboardResponse; export declare function UpdateDashboardResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateDashboardResponse; export declare function UpdateDashboardResponseToJSON(json: any): UpdateDashboardResponse; export declare function UpdateDashboardResponseToJSONTyped(value?: UpdateDashboardResponse | null, ignoreDiscriminator?: boolean): any;