/* 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';
/**
 * The number of results to offset for followup queries. Use for pagination. The value to put here is returned in the response.offset from previous searches.
 * @export
 * @interface Offset3
 */
export interface Offset3 {
}

/**
 * Check if a given object implements the Offset3 interface.
 */
export function instanceOfOffset3(value: object): value is Offset3 {
    return true;
}

export function Offset3FromJSON(json: any): Offset3 {
    return Offset3FromJSONTyped(json, false);
}

export function Offset3FromJSONTyped(json: any, ignoreDiscriminator: boolean): Offset3 {
    return json;
}

export function Offset3ToJSON(json: any): Offset3 {
    return Offset3ToJSONTyped(json, false);
}

export function Offset3ToJSONTyped(value?: Offset3 | null, ignoreDiscriminator: boolean = false): any {
    return value;
}

