@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
47 lines (39 loc) • 1.15 kB
text/typescript
/* 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.
*/
import { mapValues } from '../runtime';
/**
*
* @export
* @interface Report
*/
export interface Report {
}
/**
* Check if a given object implements the Report interface.
*/
export function instanceOfReport(value: object): value is Report {
return true;
}
export function ReportFromJSON(json: any): Report {
return ReportFromJSONTyped(json, false);
}
export function ReportFromJSONTyped(json: any, ignoreDiscriminator: boolean): Report {
return json;
}
export function ReportToJSON(json: any): Report {
return ReportToJSONTyped(json, false);
}
export function ReportToJSONTyped(value?: Report | null, ignoreDiscriminator: boolean = false): any {
return value;
}