/** * 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 { AdminStudyObjectiveListItem } from './AdminStudyObjectiveListItem'; /** * * @export * @interface AdminPaginatedStudyObjectives */ export interface AdminPaginatedStudyObjectives { /** * Array of study objective objects * @type {Array} * @memberof AdminPaginatedStudyObjectives */ data: Array; /** * Opaque cursor for fetching the next page. Null when there are no more results. * @type {string} * @memberof AdminPaginatedStudyObjectives */ nextCursor: string | null; } /** * Check if a given object implements the AdminPaginatedStudyObjectives interface. */ export declare function instanceOfAdminPaginatedStudyObjectives(value: object): value is AdminPaginatedStudyObjectives; export declare function AdminPaginatedStudyObjectivesFromJSON(json: any): AdminPaginatedStudyObjectives; export declare function AdminPaginatedStudyObjectivesFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminPaginatedStudyObjectives; export declare function AdminPaginatedStudyObjectivesToJSON(json: any): AdminPaginatedStudyObjectives; export declare function AdminPaginatedStudyObjectivesToJSONTyped(value?: AdminPaginatedStudyObjectives | null, ignoreDiscriminator?: boolean): any;