/** * 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. */ /** * AnalyticsWidgetResult is a generated result for an on-demand widget tab. * @export * @interface AnalyticsWidgetResult */ export interface AnalyticsWidgetResult { /** * * @type {number} * @memberof AnalyticsWidgetResult */ currentCount?: number; /** * * @type {Date} * @memberof AnalyticsWidgetResult */ generatedAt?: Date; /** * * @type {number} * @memberof AnalyticsWidgetResult */ sourceCount?: number; /** * True when the underlying values have changed since it was generated, so * the UI can offer a re-run rather than presenting stale prose as current. * @type {boolean} * @memberof AnalyticsWidgetResult */ stale?: boolean; /** * * @type {string} * @memberof AnalyticsWidgetResult */ text?: string; /** * * @type {string} * @memberof AnalyticsWidgetResult */ widgetId?: string; } /** * Check if a given object implements the AnalyticsWidgetResult interface. */ export declare function instanceOfAnalyticsWidgetResult(value: object): value is AnalyticsWidgetResult; export declare function AnalyticsWidgetResultFromJSON(json: any): AnalyticsWidgetResult; export declare function AnalyticsWidgetResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnalyticsWidgetResult; export declare function AnalyticsWidgetResultToJSON(json: any): AnalyticsWidgetResult; export declare function AnalyticsWidgetResultToJSONTyped(value?: AnalyticsWidgetResult | null, ignoreDiscriminator?: boolean): any;