/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface UpsertUserContextRequest */ export interface UpsertUserContextRequest { /** * * @type {string} * @memberof UpsertUserContextRequest */ chatId?: string | null; /** * * @type {string} * @memberof UpsertUserContextRequest */ preferredName?: string | null; /** * * @type {string} * @memberof UpsertUserContextRequest */ summary?: string | null; /** * * @type {string} * @memberof UpsertUserContextRequest */ courses?: string | null; /** * * @type {string} * @memberof UpsertUserContextRequest */ topicsOfInterest?: string | null; } /** * Check if a given object implements the UpsertUserContextRequest interface. */ export declare function instanceOfUpsertUserContextRequest(value: object): value is UpsertUserContextRequest; export declare function UpsertUserContextRequestFromJSON(json: any): UpsertUserContextRequest; export declare function UpsertUserContextRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpsertUserContextRequest; export declare function UpsertUserContextRequestToJSON(json: any): UpsertUserContextRequest; export declare function UpsertUserContextRequestToJSONTyped(value?: UpsertUserContextRequest | null, ignoreDiscriminator?: boolean): any;