UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
47 lines (39 loc) 1.19 kB
/* tslint:disable */ /* eslint-disable */ /** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.19.10 * 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'; /** * Type of reporting voice to filer by. * @export * @interface ReportingVoice */ export interface ReportingVoice { } /** * Check if a given object implements the ReportingVoice interface. */ export function instanceOfReportingVoice(value: object): value is ReportingVoice { return true; } export function ReportingVoiceFromJSON(json: any): ReportingVoice { return ReportingVoiceFromJSONTyped(json, false); } export function ReportingVoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportingVoice { return json; } export function ReportingVoiceToJSON(json: any): ReportingVoice { return ReportingVoiceToJSONTyped(json, false); } export function ReportingVoiceToJSONTyped(value?: ReportingVoice | null, ignoreDiscriminator: boolean = false): any { return value; }