@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
36 lines (35 loc) • 1.19 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.StartTimestamp2ToJSON = exports.StartTimestamp2FromJSONTyped = exports.StartTimestamp2FromJSON = exports.instanceOfStartTimestamp2 = void 0;
/**
* Check if a given object implements the StartTimestamp2 interface.
*/
function instanceOfStartTimestamp2(value) {
return true;
}
exports.instanceOfStartTimestamp2 = instanceOfStartTimestamp2;
function StartTimestamp2FromJSON(json) {
return StartTimestamp2FromJSONTyped(json, false);
}
exports.StartTimestamp2FromJSON = StartTimestamp2FromJSON;
function StartTimestamp2FromJSONTyped(json, ignoreDiscriminator) {
return json;
}
exports.StartTimestamp2FromJSONTyped = StartTimestamp2FromJSONTyped;
function StartTimestamp2ToJSON(value) {
return value;
}
exports.StartTimestamp2ToJSON = StartTimestamp2ToJSON;
;