@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
39 lines (38 loc) • 1.24 kB
TypeScript
/**
* AskNews API
* AskNews API
*
* The version of the OpenAPI document: 0.21.1
* 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 TopNArticlesByHitsItem
*/
export interface TopNArticlesByHitsItem {
/**
*
* @type {string}
* @memberof TopNArticlesByHitsItem
*/
articleUrl: string;
/**
*
* @type {number}
* @memberof TopNArticlesByHitsItem
*/
hitCount: number;
}
/**
* Check if a given object implements the TopNArticlesByHitsItem interface.
*/
export declare function instanceOfTopNArticlesByHitsItem(value: object): value is TopNArticlesByHitsItem;
export declare function TopNArticlesByHitsItemFromJSON(json: any): TopNArticlesByHitsItem;
export declare function TopNArticlesByHitsItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): TopNArticlesByHitsItem;
export declare function TopNArticlesByHitsItemToJSON(json: any): TopNArticlesByHitsItem;
export declare function TopNArticlesByHitsItemToJSONTyped(value?: TopNArticlesByHitsItem | null, ignoreDiscriminator?: boolean): any;