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