/** * 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 { UserConcept } from './UserConcept'; /** * * @export * @interface PaginatedUserConcepts */ export interface PaginatedUserConcepts { /** * Array of user-concept rows for the current page * @type {Array} * @memberof PaginatedUserConcepts */ data: Array; /** * Opaque cursor for fetching the next page. Null when there are no more results. * @type {string} * @memberof PaginatedUserConcepts */ nextCursor: string | null; } /** * Check if a given object implements the PaginatedUserConcepts interface. */ export declare function instanceOfPaginatedUserConcepts(value: object): value is PaginatedUserConcepts; export declare function PaginatedUserConceptsFromJSON(json: any): PaginatedUserConcepts; export declare function PaginatedUserConceptsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedUserConcepts; export declare function PaginatedUserConceptsToJSON(json: any): PaginatedUserConcepts; export declare function PaginatedUserConceptsToJSONTyped(value?: PaginatedUserConcepts | null, ignoreDiscriminator?: boolean): any;