/** * 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 { LearningDaysResponse } from '../models/index'; export interface GetLearningDaysRequest { startDate: Date; endDate: Date; xUserId: string; } /** * */ export declare class LearningDaysApi extends runtime.BaseAPI { /** * Returns distinct dates within the given range on which the user had at least one learning moment, plus the date of their most recent learning moment overall. * Get learning days in range */ getLearningDaysRaw(requestParameters: GetLearningDaysRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns distinct dates within the given range on which the user had at least one learning moment, plus the date of their most recent learning moment overall. * Get learning days in range */ getLearningDays(requestParameters: GetLearningDaysRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }