/** * 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 AdminActiveStreak */ export interface AdminActiveStreak { /** * External user ID * @type {string} * @memberof AdminActiveStreak */ userId: string | null; /** * * @type {number} * @memberof AdminActiveStreak */ currentDays: number; /** * * @type {Array} * @memberof AdminActiveStreak */ missedDaysInCycle: Array; /** * * @type {Date} * @memberof AdminActiveStreak */ lastMomentDate: Date | null; } /** * Check if a given object implements the AdminActiveStreak interface. */ export declare function instanceOfAdminActiveStreak(value: object): value is AdminActiveStreak; export declare function AdminActiveStreakFromJSON(json: any): AdminActiveStreak; export declare function AdminActiveStreakFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminActiveStreak; export declare function AdminActiveStreakToJSON(json: any): AdminActiveStreak; export declare function AdminActiveStreakToJSONTyped(value?: AdminActiveStreak | null, ignoreDiscriminator?: boolean): any;