/** * 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 GenerateWidgetSummaryResponse */ export interface GenerateWidgetSummaryResponse { /** * * @type {AnalyticsWidgetResult} * @memberof GenerateWidgetSummaryResponse */ result?: AnalyticsWidgetResult; } /** * Check if a given object implements the GenerateWidgetSummaryResponse interface. */ export declare function instanceOfGenerateWidgetSummaryResponse(value: object): value is GenerateWidgetSummaryResponse; export declare function GenerateWidgetSummaryResponseFromJSON(json: any): GenerateWidgetSummaryResponse; export declare function GenerateWidgetSummaryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GenerateWidgetSummaryResponse; export declare function GenerateWidgetSummaryResponseToJSON(json: any): GenerateWidgetSummaryResponse; export declare function GenerateWidgetSummaryResponseToJSONTyped(value?: GenerateWidgetSummaryResponse | null, ignoreDiscriminator?: boolean): any;