/** * 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. */ /** * WidgetTabView says how a tab draws what it fetched. * * - WIDGET_TAB_VIEW_UNSPECIFIED: The widget's own chart type. * - WIDGET_TAB_VIEW_MAP: A world map, which needs rows carrying a country code. * @export */ export declare const WidgetTabView: { readonly WidgetTabViewUnspecified: "WIDGET_TAB_VIEW_UNSPECIFIED"; readonly WidgetTabViewChart: "WIDGET_TAB_VIEW_CHART"; readonly WidgetTabViewMap: "WIDGET_TAB_VIEW_MAP"; }; export type WidgetTabView = typeof WidgetTabView[keyof typeof WidgetTabView]; export declare function instanceOfWidgetTabView(value: any): boolean; export declare function WidgetTabViewFromJSON(json: any): WidgetTabView; export declare function WidgetTabViewFromJSONTyped(json: any, ignoreDiscriminator: boolean): WidgetTabView; export declare function WidgetTabViewToJSON(value?: WidgetTabView | null): any; export declare function WidgetTabViewToJSONTyped(value: any, ignoreDiscriminator: boolean): WidgetTabView;