UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
36 lines (35 loc) 1.08 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.SentimentToJSON = exports.SentimentFromJSONTyped = exports.SentimentFromJSON = exports.instanceOfSentiment = void 0; /** * Check if a given object implements the Sentiment interface. */ function instanceOfSentiment(value) { return true; } exports.instanceOfSentiment = instanceOfSentiment; function SentimentFromJSON(json) { return SentimentFromJSONTyped(json, false); } exports.SentimentFromJSON = SentimentFromJSON; function SentimentFromJSONTyped(json, ignoreDiscriminator) { return json; } exports.SentimentFromJSONTyped = SentimentFromJSONTyped; function SentimentToJSON(value) { return value; } exports.SentimentToJSON = SentimentToJSON;