UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
36 lines (35 loc) 1.13 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.9.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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.FunctionCallToJSON = exports.FunctionCallFromJSONTyped = exports.FunctionCallFromJSON = exports.instanceOfFunctionCall = void 0; /** * Check if a given object implements the FunctionCall interface. */ function instanceOfFunctionCall(value) { return true; } exports.instanceOfFunctionCall = instanceOfFunctionCall; function FunctionCallFromJSON(json) { return FunctionCallFromJSONTyped(json, false); } exports.FunctionCallFromJSON = FunctionCallFromJSON; function FunctionCallFromJSONTyped(json, ignoreDiscriminator) { return json; } exports.FunctionCallFromJSONTyped = FunctionCallFromJSONTyped; function FunctionCallToJSON(value) { return value; } exports.FunctionCallToJSON = FunctionCallToJSON;