UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
45 lines (44 loc) 1.54 kB
/** * AskNews API * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod) * * The version of the OpenAPI document: 0.24.22 * Contact: contact@emergentmethods.ai * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TopNArticlesTimeseriesItem */ export interface TopNArticlesTimeseriesItem { /** * * @type {string} * @memberof TopNArticlesTimeseriesItem */ articleUrl: string; /** * * @type {string} * @memberof TopNArticlesTimeseriesItem */ articleId?: string | null; /** * * @type {number} * @memberof TopNArticlesTimeseriesItem */ hitCount: number; } /** * Check if a given object implements the TopNArticlesTimeseriesItem interface. */ export declare function instanceOfTopNArticlesTimeseriesItem(value: object): value is TopNArticlesTimeseriesItem; export declare function TopNArticlesTimeseriesItemFromJSON(json: any): TopNArticlesTimeseriesItem; export declare function TopNArticlesTimeseriesItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): TopNArticlesTimeseriesItem; export declare function TopNArticlesTimeseriesItemToJSON(json: any): TopNArticlesTimeseriesItem; export declare function TopNArticlesTimeseriesItemToJSONTyped(value?: TopNArticlesTimeseriesItem | null, ignoreDiscriminator?: boolean): any;