/** * 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 { QuizListItem } from './QuizListItem'; /** * * @export * @interface PaginatedQuizzes */ export interface PaginatedQuizzes { /** * Array of quiz objects * @type {Array} * @memberof PaginatedQuizzes */ data: Array; /** * Opaque cursor for fetching the next page. Null when there are no more results. * @type {string} * @memberof PaginatedQuizzes */ nextCursor: string | null; } /** * Check if a given object implements the PaginatedQuizzes interface. */ export declare function instanceOfPaginatedQuizzes(value: object): value is PaginatedQuizzes; export declare function PaginatedQuizzesFromJSON(json: any): PaginatedQuizzes; export declare function PaginatedQuizzesFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedQuizzes; export declare function PaginatedQuizzesToJSON(json: any): PaginatedQuizzes; export declare function PaginatedQuizzesToJSONTyped(value?: PaginatedQuizzes | null, ignoreDiscriminator?: boolean): any;