/** * 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 type { LearningMoment } from './LearningMoment'; /** * * @export * @interface PaginatedLearningMoments */ export interface PaginatedLearningMoments { /** * Array of learning moment objects * @type {Array} * @memberof PaginatedLearningMoments */ data: Array; /** * Opaque cursor for fetching the next page. Null when there are no more results. * @type {string} * @memberof PaginatedLearningMoments */ nextCursor: string | null; } /** * Check if a given object implements the PaginatedLearningMoments interface. */ export declare function instanceOfPaginatedLearningMoments(value: object): value is PaginatedLearningMoments; export declare function PaginatedLearningMomentsFromJSON(json: any): PaginatedLearningMoments; export declare function PaginatedLearningMomentsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedLearningMoments; export declare function PaginatedLearningMomentsToJSON(json: any): PaginatedLearningMoments; export declare function PaginatedLearningMomentsToJSONTyped(value?: PaginatedLearningMoments | null, ignoreDiscriminator?: boolean): any;