/** * 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 { AnalyticsWidgetResult } from './AnalyticsWidgetResult'; /** * * @export * @interface GetWidgetSummaryResponse */ export interface GetWidgetSummaryResponse { /** * * @type {AnalyticsWidgetResult} * @memberof GetWidgetSummaryResponse */ result?: AnalyticsWidgetResult; } /** * Check if a given object implements the GetWidgetSummaryResponse interface. */ export declare function instanceOfGetWidgetSummaryResponse(value: object): value is GetWidgetSummaryResponse; export declare function GetWidgetSummaryResponseFromJSON(json: any): GetWidgetSummaryResponse; export declare function GetWidgetSummaryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetWidgetSummaryResponse; export declare function GetWidgetSummaryResponseToJSON(json: any): GetWidgetSummaryResponse; export declare function GetWidgetSummaryResponseToJSONTyped(value?: GetWidgetSummaryResponse | null, ignoreDiscriminator?: boolean): any;