/** * 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 LearningStreakResponse */ export interface LearningStreakResponse { /** * * @type {number} * @memberof LearningStreakResponse */ currentDays: number; /** * * @type {number} * @memberof LearningStreakResponse */ longestDays: number; /** * * @type {Date} * @memberof LearningStreakResponse */ lastMomentDate: Date | null; /** * * @type {number} * @memberof LearningStreakResponse */ totalMissedDays: number; /** * * @type {Array} * @memberof LearningStreakResponse */ missedDaysInCycle: Array; /** * * @type {Date} * @memberof LearningStreakResponse */ lastEvaluatedAt: Date | null; /** * * @type {Date} * @memberof LearningStreakResponse */ createdAt: Date; /** * * @type {Date} * @memberof LearningStreakResponse */ updatedAt: Date; } /** * Check if a given object implements the LearningStreakResponse interface. */ export declare function instanceOfLearningStreakResponse(value: object): value is LearningStreakResponse; export declare function LearningStreakResponseFromJSON(json: any): LearningStreakResponse; export declare function LearningStreakResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LearningStreakResponse; export declare function LearningStreakResponseToJSON(json: any): LearningStreakResponse; export declare function LearningStreakResponseToJSONTyped(value?: LearningStreakResponse | null, ignoreDiscriminator?: boolean): any;