@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
40 lines (39 loc) • 1.17 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
/**
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.StopToJSONTyped = exports.StopToJSON = exports.StopFromJSONTyped = exports.StopFromJSON = exports.instanceOfStop = void 0;
/**
* Check if a given object implements the Stop interface.
*/
function instanceOfStop(value) {
return true;
}
exports.instanceOfStop = instanceOfStop;
function StopFromJSON(json) {
return StopFromJSONTyped(json, false);
}
exports.StopFromJSON = StopFromJSON;
function StopFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
exports.StopFromJSONTyped = StopFromJSONTyped;
function StopToJSON(json) {
return StopToJSONTyped(json, false);
}
exports.StopToJSON = StopToJSON;
function StopToJSONTyped(value, ignoreDiscriminator = false) {
return value;
}
exports.StopToJSONTyped = StopToJSONTyped;
;