/** * 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 CreateDashboardResponse */ export interface CreateDashboardResponse { /** * * @type {AnalyticsDashboard} * @memberof CreateDashboardResponse */ dashboard?: AnalyticsDashboard; } /** * Check if a given object implements the CreateDashboardResponse interface. */ export declare function instanceOfCreateDashboardResponse(value: object): value is CreateDashboardResponse; export declare function CreateDashboardResponseFromJSON(json: any): CreateDashboardResponse; export declare function CreateDashboardResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateDashboardResponse; export declare function CreateDashboardResponseToJSON(json: any): CreateDashboardResponse; export declare function CreateDashboardResponseToJSONTyped(value?: CreateDashboardResponse | null, ignoreDiscriminator?: boolean): any;