/* 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';
/**
 * 
 * @export
 * @interface Offset5
 */
export interface Offset5 {
}

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

export function Offset5FromJSON(json: any): Offset5 {
    return Offset5FromJSONTyped(json, false);
}

export function Offset5FromJSONTyped(json: any, ignoreDiscriminator: boolean): Offset5 {
    return json;
}

export function Offset5ToJSON(json: any): Offset5 {
    return Offset5ToJSONTyped(json, false);
}

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

