/** * 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. */ import * as runtime from '../runtime'; import type { UpsertUserContextRequest, UserContext } from '../models/index'; export interface GetUserContextRequest { xUserId: string; } export interface UpsertUserContextOperationRequest { xUserId: string; upsertUserContextRequest: UpsertUserContextRequest; } /** * */ export declare class UserContextApi extends runtime.BaseAPI { /** * Returns the personalization context for the authenticated user. * Get user context */ getUserContextRaw(requestParameters: GetUserContextRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns the personalization context for the authenticated user. * Get user context */ getUserContext(requestParameters: GetUserContextRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Creates or updates the personalization context for the authenticated user. * Create or update user context */ upsertUserContextRaw(requestParameters: UpsertUserContextOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Creates or updates the personalization context for the authenticated user. * Create or update user context */ upsertUserContext(requestParameters: UpsertUserContextOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }