UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
43 lines (36 loc) 860 B
/* tslint:disable */ /* eslint-disable */ /** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.18.6 * 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 User */ export interface User { } /** * Check if a given object implements the User interface. */ export function instanceOfUser(value: object): boolean { return true; } export function UserFromJSON(json: any): User { return UserFromJSONTyped(json, false); } export function UserFromJSONTyped(json: any, ignoreDiscriminator: boolean): User { return json; } export function UserToJSON(value?: User | null): any { return value; }