@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
56 lines (55 loc) • 1.47 kB
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface IntraClusterStatistics
*/
export interface IntraClusterStatistics {
/**
*
* @type {number}
* @memberof IntraClusterStatistics
*/
clusterArticlesPct?: number;
/**
*
* @type {number}
* @memberof IntraClusterStatistics
*/
clusterCountriesPct?: number;
/**
*
* @type {number}
* @memberof IntraClusterStatistics
*/
clusterDomainsPct?: number;
/**
*
* @type {number}
* @memberof IntraClusterStatistics
*/
clusterLanguagesPct?: number;
/**
*
* @type {object}
* @memberof IntraClusterStatistics
*/
clusterProbabilities?: object;
}
/**
* Check if a given object implements the IntraClusterStatistics interface.
*/
export declare function instanceOfIntraClusterStatistics(value: object): boolean;
export declare function IntraClusterStatisticsFromJSON(json: any): IntraClusterStatistics;
export declare function IntraClusterStatisticsFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntraClusterStatistics;
export declare function IntraClusterStatisticsToJSON(value?: IntraClusterStatistics | null): any;