/** * 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 LearningMomentCount */ export interface LearningMomentCount { /** * Total number of learning moments for the authenticated user * @type {number} * @memberof LearningMomentCount */ count: number; } /** * Check if a given object implements the LearningMomentCount interface. */ export declare function instanceOfLearningMomentCount(value: object): value is LearningMomentCount; export declare function LearningMomentCountFromJSON(json: any): LearningMomentCount; export declare function LearningMomentCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): LearningMomentCount; export declare function LearningMomentCountToJSON(json: any): LearningMomentCount; export declare function LearningMomentCountToJSONTyped(value?: LearningMomentCount | null, ignoreDiscriminator?: boolean): any;