UNPKG

@indexea/sdk

Version:

Indexea JavaScript SDK (indexea.com)

56 lines (55 loc) 1.4 kB
/** * Indexea OpenAPI * OpenAPI of Indexea * * The version of the OpenAPI document: 1.0.0 * Contact: indexea.com@gmail.com * * 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 CrawlerArticleContent */ export interface CrawlerArticleContent { /** * * @type {string} * @memberof CrawlerArticleContent */ url?: string; /** * * @type {string} * @memberof CrawlerArticleContent */ title?: string; /** * * @type {string} * @memberof CrawlerArticleContent */ date?: string; /** * * @type {string} * @memberof CrawlerArticleContent */ content?: string; /** * * @type {Array<string>} * @memberof CrawlerArticleContent */ tags?: Array<string>; } /** * Check if a given object implements the CrawlerArticleContent interface. */ export declare function instanceOfCrawlerArticleContent(value: object): boolean; export declare function CrawlerArticleContentFromJSON(json: any): CrawlerArticleContent; export declare function CrawlerArticleContentFromJSONTyped(json: any, ignoreDiscriminator: boolean): CrawlerArticleContent; export declare function CrawlerArticleContentToJSON(value?: CrawlerArticleContent | null): any;