@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
40 lines (39 loc) • 1.21 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.OffsetToJSONTyped = exports.OffsetToJSON = exports.OffsetFromJSONTyped = exports.OffsetFromJSON = exports.instanceOfOffset = void 0;
/**
* Check if a given object implements the Offset interface.
*/
function instanceOfOffset(value) {
return true;
}
exports.instanceOfOffset = instanceOfOffset;
function OffsetFromJSON(json) {
return OffsetFromJSONTyped(json, false);
}
exports.OffsetFromJSON = OffsetFromJSON;
function OffsetFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
exports.OffsetFromJSONTyped = OffsetFromJSONTyped;
function OffsetToJSON(json) {
return OffsetToJSONTyped(json, false);
}
exports.OffsetToJSON = OffsetToJSON;
function OffsetToJSONTyped(value, ignoreDiscriminator = false) {
return value;
}
exports.OffsetToJSONTyped = OffsetToJSONTyped;
;