UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
47 lines (39 loc) 1.06 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'; /** * Offset to use * @export * @interface Offset1 */ export interface Offset1 { } /** * Check if a given object implements the Offset1 interface. */ export function instanceOfOffset1(value: object): value is Offset1 { return true; } export function Offset1FromJSON(json: any): Offset1 { return Offset1FromJSONTyped(json, false); } export function Offset1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Offset1 { return json; } export function Offset1ToJSON(json: any): Offset1 { return Offset1ToJSONTyped(json, false); } export function Offset1ToJSONTyped(value?: Offset1 | null, ignoreDiscriminator: boolean = false): any { return value; }