UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
25 lines (24 loc) 764 B
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.21.1 * 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 type { UserProfile } from './UserProfile'; /** * @type Profile * * @export */ export type Profile = { identityType: 'user'; } & UserProfile; export declare function ProfileFromJSON(json: any): Profile; export declare function ProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): Profile; export declare function ProfileToJSON(json: any): any; export declare function ProfileToJSONTyped(value?: Profile | null, ignoreDiscriminator?: boolean): any;