UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
27 lines (26 loc) 856 B
/** * 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 Sentiment */ export interface Sentiment { } /** * Check if a given object implements the Sentiment interface. */ export declare function instanceOfSentiment(value: object): value is Sentiment; export declare function SentimentFromJSON(json: any): Sentiment; export declare function SentimentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Sentiment; export declare function SentimentToJSON(json: any): Sentiment; export declare function SentimentToJSONTyped(value?: Sentiment | null, ignoreDiscriminator?: boolean): any;