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

import { mapValues } from '../runtime';
/**
 * If defined, the search will only occur on articles that do not contain strings in this list.
 * @export
 * @interface ReverseStringGuarantee
 */
export interface ReverseStringGuarantee {
}

/**
 * Check if a given object implements the ReverseStringGuarantee interface.
 */
export function instanceOfReverseStringGuarantee(value: object): boolean {
    return true;
}

export function ReverseStringGuaranteeFromJSON(json: any): ReverseStringGuarantee {
    return ReverseStringGuaranteeFromJSONTyped(json, false);
}

export function ReverseStringGuaranteeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReverseStringGuarantee {
    return json;
}

export function ReverseStringGuaranteeToJSON(value?: ReverseStringGuarantee | null): any {
    return value;
}

