@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
36 lines (35 loc) • 1.17 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
/**
* AskNews API
* AskNews API
*
* The version of the OpenAPI document: 0.9.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.StartTimestampToJSON = exports.StartTimestampFromJSONTyped = exports.StartTimestampFromJSON = exports.instanceOfStartTimestamp = void 0;
/**
* Check if a given object implements the StartTimestamp interface.
*/
function instanceOfStartTimestamp(value) {
return true;
}
exports.instanceOfStartTimestamp = instanceOfStartTimestamp;
function StartTimestampFromJSON(json) {
return StartTimestampFromJSONTyped(json, false);
}
exports.StartTimestampFromJSON = StartTimestampFromJSON;
function StartTimestampFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
exports.StartTimestampFromJSONTyped = StartTimestampFromJSONTyped;
function StartTimestampToJSON(value) {
return value;
}
exports.StartTimestampToJSON = StartTimestampToJSON;
;