@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
40 lines (39 loc) • 1.4 kB
JavaScript
;
/* tslint:disable */
/* eslint-disable */
/**
* AskNews API
* AskNews API [](https://status.asknews.app/status/prod)
*
* The version of the OpenAPI document: 0.24.22
* 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.ContinentToJSONTyped = exports.ContinentToJSON = exports.ContinentFromJSONTyped = exports.ContinentFromJSON = exports.instanceOfContinent = void 0;
/**
* Check if a given object implements the Continent interface.
*/
function instanceOfContinent(value) {
return true;
}
exports.instanceOfContinent = instanceOfContinent;
function ContinentFromJSON(json) {
return ContinentFromJSONTyped(json, false);
}
exports.ContinentFromJSON = ContinentFromJSON;
function ContinentFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
exports.ContinentFromJSONTyped = ContinentFromJSONTyped;
function ContinentToJSON(json) {
return ContinentToJSONTyped(json, false);
}
exports.ContinentToJSON = ContinentToJSON;
function ContinentToJSONTyped(value, ignoreDiscriminator = false) {
return value;
}
exports.ContinentToJSONTyped = ContinentToJSONTyped;