/** * 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 { LearningMomentCount, PaginatedLearningMoments } from '../models/index'; export interface GetLearningMomentsCountRequest { xUserId: string; } export interface ListLearningMomentsRequest { xUserId: string; limit?: number; cursor?: string; } /** * */ export declare class LearningMomentsApi extends runtime.BaseAPI { /** * Returns the total number of learning moments for the authenticated user. * Get learning moments count */ getLearningMomentsCountRaw(requestParameters: GetLearningMomentsCountRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns the total number of learning moments for the authenticated user. * Get learning moments count */ getLearningMomentsCount(requestParameters: GetLearningMomentsCountRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Returns paginated learning moments belonging to the authenticated account user, ordered by creation date (newest first). * List learning moments */ listLearningMomentsRaw(requestParameters: ListLearningMomentsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns paginated learning moments belonging to the authenticated account user, ordered by creation date (newest first). * List learning moments */ listLearningMoments(requestParameters: ListLearningMomentsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }