@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
40 lines (39 loc) • 1.23 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.Offset3ToJSONTyped = exports.Offset3ToJSON = exports.Offset3FromJSONTyped = exports.Offset3FromJSON = exports.instanceOfOffset3 = void 0;
/**
* Check if a given object implements the Offset3 interface.
*/
function instanceOfOffset3(value) {
return true;
}
exports.instanceOfOffset3 = instanceOfOffset3;
function Offset3FromJSON(json) {
return Offset3FromJSONTyped(json, false);
}
exports.Offset3FromJSON = Offset3FromJSON;
function Offset3FromJSONTyped(json, ignoreDiscriminator) {
return json;
}
exports.Offset3FromJSONTyped = Offset3FromJSONTyped;
function Offset3ToJSON(json) {
return Offset3ToJSONTyped(json, false);
}
exports.Offset3ToJSON = Offset3ToJSON;
function Offset3ToJSONTyped(value, ignoreDiscriminator = false) {
return value;
}
exports.Offset3ToJSONTyped = Offset3ToJSONTyped;
;