UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
47 lines (39 loc) 1 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'; /** * * @export * @interface Stop */ export interface Stop { } /** * Check if a given object implements the Stop interface. */ export function instanceOfStop(value: object): value is Stop { return true; } export function StopFromJSON(json: any): Stop { return StopFromJSONTyped(json, false); } export function StopFromJSONTyped(json: any, ignoreDiscriminator: boolean): Stop { return json; } export function StopToJSON(json: any): Stop { return StopToJSONTyped(json, false); } export function StopToJSONTyped(value?: Stop | null, ignoreDiscriminator: boolean = false): any { return value; }