/**
 * AskNews API
 * AskNews API
 *
 * The version of the OpenAPI document: 0.18.6
 * 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.
 */
import type { AsknewsApiSchemaV1CommonGraphRelationships } from './AsknewsApiSchemaV1CommonGraphRelationships';
import type { Classification } from './Classification';
import type { Entities } from './Entities';
import type { GeoCoordinate } from './GeoCoordinate';
import type { ReportingVoice1 } from './ReportingVoice1';
/**
 *
 * @export
 * @interface Article
 */
export interface Article {
    /**
     *
     * @type {string}
     * @memberof Article
     */
    articleUrl: string;
    /**
     *
     * @type {string}
     * @memberof Article
     */
    articleId: string;
    /**
     *
     * @type {Classification}
     * @memberof Article
     */
    classification: Classification;
    /**
     *
     * @type {string}
     * @memberof Article
     */
    country: string;
    /**
     *
     * @type {string}
     * @memberof Article
     */
    sourceId: string;
    /**
     *
     * @type {number}
     * @memberof Article
     */
    pageRank: number;
    /**
     *
     * @type {string}
     * @memberof Article
     */
    domainUrl: string;
    /**
     *
     * @type {string}
     * @memberof Article
     */
    engTitle: string;
    /**
     *
     * @type {Entities}
     * @memberof Article
     */
    entities: Entities;
    /**
     *
     * @type {string}
     * @memberof Article
     */
    imageUrl?: string;
    /**
     *
     * @type {Array<string>}
     * @memberof Article
     */
    keywords: Array<string>;
    /**
     *
     * @type {string}
     * @memberof Article
     */
    language: string;
    /**
     *
     * @type {Date}
     * @memberof Article
     */
    pubDate: Date;
    /**
     *
     * @type {string}
     * @memberof Article
     */
    summary: string;
    /**
     *
     * @type {string}
     * @memberof Article
     */
    title: string;
    /**
     *
     * @type {number}
     * @memberof Article
     */
    sentiment: number;
    /**
     *
     * @type {number}
     * @memberof Article
     */
    centroidDistance: number;
    /**
     *
     * @type {number}
     * @memberof Article
     */
    clusterProbability: number;
    /**
     *
     * @type {string}
     * @memberof Article
     */
    markdownCitation?: string;
    /**
     *
     * @type {string}
     * @memberof Article
     */
    provocative?: ArticleProvocativeEnum;
    /**
     *
     * @type {ReportingVoice1}
     * @memberof Article
     */
    reportingVoice?: ReportingVoice1;
    /**
     *
     * @type {AsknewsApiSchemaV1CommonGraphRelationships}
     * @memberof Article
     */
    entityRelationGraph?: AsknewsApiSchemaV1CommonGraphRelationships;
    /**
     *
     * @type {{ [key: string]: GeoCoordinate; }}
     * @memberof Article
     */
    geoCoordinates?: {
        [key: string]: GeoCoordinate;
    };
    /**
     *
     * @type {string}
     * @memberof Article
     */
    continent?: ArticleContinentEnum;
}
/**
 * @export
 */
export declare const ArticleProvocativeEnum: {
    readonly Unknown: "unknown";
    readonly Low: "low";
    readonly Medium: "medium";
    readonly High: "high";
};
export type ArticleProvocativeEnum = typeof ArticleProvocativeEnum[keyof typeof ArticleProvocativeEnum];
/**
 * @export
 */
export declare const ArticleContinentEnum: {
    readonly Africa: "Africa";
    readonly Asia: "Asia";
    readonly Europe: "Europe";
    readonly MiddleEast: "Middle East";
    readonly NorthAmerica: "North America";
    readonly SouthAmerica: "South America";
    readonly Oceania: "Oceania";
};
export type ArticleContinentEnum = typeof ArticleContinentEnum[keyof typeof ArticleContinentEnum];
/**
 * Check if a given object implements the Article interface.
 */
export declare function instanceOfArticle(value: object): boolean;
export declare function ArticleFromJSON(json: any): Article;
export declare function ArticleFromJSONTyped(json: any, ignoreDiscriminator: boolean): Article;
export declare function ArticleToJSON(value?: Article | null): any;
