@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
27 lines (26 loc) • 1.19 kB
TypeScript
/**
* AskNews API
* AskNews API [](https://status.asknews.app/status/prod)
*
* The version of the OpenAPI document: 0.24.66
* 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.
*/
/**
* Which data sources DeepNews should use. Can be a single source or a list. Available sources are: asknews, google, graph, wiki, x, reddit, charts, email, full_text_discovery. Defaults to ['asknews', 'google', 'wiki', 'x'].
* @export
* @interface Sources2
*/
export interface Sources2 {
}
/**
* Check if a given object implements the Sources2 interface.
*/
export declare function instanceOfSources2(value: object): value is Sources2;
export declare function Sources2FromJSON(json: any): Sources2;
export declare function Sources2FromJSONTyped(json: any, ignoreDiscriminator: boolean): Sources2;
export declare function Sources2ToJSON(json: any): Sources2;
export declare function Sources2ToJSONTyped(value?: Sources2 | null, ignoreDiscriminator?: boolean): any;