/** * 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. */ /** * WidgetTabMode says how a tab produces what it shows. * * - WIDGET_TAB_MODE_UNSPECIFIED: Fetches the widget's data source with this tab's params, on switch. * - WIDGET_TAB_MODE_AGENT_SUMMARY: Shows an agent's analysis of the widget's values. Runs only when the user * asks, because it costs platform credits, and its result is stored rather * than regenerated on every view. * @export */ export declare const WidgetTabMode: { readonly WidgetTabModeUnspecified: "WIDGET_TAB_MODE_UNSPECIFIED"; readonly WidgetTabModeData: "WIDGET_TAB_MODE_DATA"; readonly WidgetTabModeAgentSummary: "WIDGET_TAB_MODE_AGENT_SUMMARY"; }; export type WidgetTabMode = typeof WidgetTabMode[keyof typeof WidgetTabMode]; export declare function instanceOfWidgetTabMode(value: any): boolean; export declare function WidgetTabModeFromJSON(json: any): WidgetTabMode; export declare function WidgetTabModeFromJSONTyped(json: any, ignoreDiscriminator: boolean): WidgetTabMode; export declare function WidgetTabModeToJSON(value?: WidgetTabMode | null): any; export declare function WidgetTabModeToJSONTyped(value: any, ignoreDiscriminator: boolean): WidgetTabMode;