/** * 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 { DashboardConfig } from './DashboardConfig'; /** * * @export * @interface AnalyticsDashboardServiceUpdateDashboardBody */ export interface AnalyticsDashboardServiceUpdateDashboardBody { /** * * @type {DashboardConfig} * @memberof AnalyticsDashboardServiceUpdateDashboardBody */ config?: DashboardConfig; /** * * @type {string} * @memberof AnalyticsDashboardServiceUpdateDashboardBody */ name?: string; } /** * Check if a given object implements the AnalyticsDashboardServiceUpdateDashboardBody interface. */ export declare function instanceOfAnalyticsDashboardServiceUpdateDashboardBody(value: object): value is AnalyticsDashboardServiceUpdateDashboardBody; export declare function AnalyticsDashboardServiceUpdateDashboardBodyFromJSON(json: any): AnalyticsDashboardServiceUpdateDashboardBody; export declare function AnalyticsDashboardServiceUpdateDashboardBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnalyticsDashboardServiceUpdateDashboardBody; export declare function AnalyticsDashboardServiceUpdateDashboardBodyToJSON(json: any): AnalyticsDashboardServiceUpdateDashboardBody; export declare function AnalyticsDashboardServiceUpdateDashboardBodyToJSONTyped(value?: AnalyticsDashboardServiceUpdateDashboardBody | null, ignoreDiscriminator?: boolean): any;