@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
40 lines (39 loc) • 1.26 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.Sources1ToJSONTyped = exports.Sources1ToJSON = exports.Sources1FromJSONTyped = exports.Sources1FromJSON = exports.instanceOfSources1 = void 0;
/**
* Check if a given object implements the Sources1 interface.
*/
function instanceOfSources1(value) {
return true;
}
exports.instanceOfSources1 = instanceOfSources1;
function Sources1FromJSON(json) {
return Sources1FromJSONTyped(json, false);
}
exports.Sources1FromJSON = Sources1FromJSON;
function Sources1FromJSONTyped(json, ignoreDiscriminator) {
return json;
}
exports.Sources1FromJSONTyped = Sources1FromJSONTyped;
function Sources1ToJSON(json) {
return Sources1ToJSONTyped(json, false);
}
exports.Sources1ToJSON = Sources1ToJSON;
function Sources1ToJSONTyped(value, ignoreDiscriminator = false) {
return value;
}
exports.Sources1ToJSONTyped = Sources1ToJSONTyped;
;