@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
47 lines (39 loc) • 1.07 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* AskNews API
* AskNews API
*
* The version of the OpenAPI document: 0.19.10
* 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 { mapValues } from '../runtime';
/**
*
* @export
* @interface Sentiment
*/
export interface Sentiment {
}
/**
* Check if a given object implements the Sentiment interface.
*/
export function instanceOfSentiment(value: object): value is Sentiment {
return true;
}
export function SentimentFromJSON(json: any): Sentiment {
return SentimentFromJSONTyped(json, false);
}
export function SentimentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Sentiment {
return json;
}
export function SentimentToJSON(json: any): Sentiment {
return SentimentToJSONTyped(json, false);
}
export function SentimentToJSONTyped(value?: Sentiment | null, ignoreDiscriminator: boolean = false): any {
return value;
}