UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
40 lines (39 loc) 1.33 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * AskNews API * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](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.ReportToJSONTyped = exports.ReportToJSON = exports.ReportFromJSONTyped = exports.ReportFromJSON = exports.instanceOfReport = void 0; /** * Check if a given object implements the Report interface. */ function instanceOfReport(value) { return true; } exports.instanceOfReport = instanceOfReport; function ReportFromJSON(json) { return ReportFromJSONTyped(json, false); } exports.ReportFromJSON = ReportFromJSON; function ReportFromJSONTyped(json, ignoreDiscriminator) { return json; } exports.ReportFromJSONTyped = ReportFromJSONTyped; function ReportToJSON(json) { return ReportToJSONTyped(json, false); } exports.ReportToJSON = ReportToJSON; function ReportToJSONTyped(value, ignoreDiscriminator = false) { return value; } exports.ReportToJSONTyped = ReportToJSONTyped;