@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.StartTimestamp1ToJSON = exports.StartTimestamp1FromJSONTyped = exports.StartTimestamp1FromJSON = exports.instanceOfStartTimestamp1 = void 0;
/**
* Check if a given object implements the StartTimestamp1 interface.
*/
function instanceOfStartTimestamp1(value) {
return true;
}
exports.instanceOfStartTimestamp1 = instanceOfStartTimestamp1;
function StartTimestamp1FromJSON(json) {
return StartTimestamp1FromJSONTyped(json, false);
}
exports.StartTimestamp1FromJSON = StartTimestamp1FromJSON;
function StartTimestamp1FromJSONTyped(json, ignoreDiscriminator) {
return json;
}
exports.StartTimestamp1FromJSONTyped = StartTimestamp1FromJSONTyped;
function StartTimestamp1ToJSON(value) {
return value;
}
exports.StartTimestamp1ToJSON = StartTimestamp1ToJSON;
;