/* 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.
 */

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;
}

