/** * 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 { AdminStudyObjectiveUserCounts } from './AdminStudyObjectiveUserCounts'; /** * * @export * @interface AdminPaginatedStudyObjectiveUserCounts */ export interface AdminPaginatedStudyObjectiveUserCounts { /** * One row per distinct user, with that user's per-origin counts * @type {Array} * @memberof AdminPaginatedStudyObjectiveUserCounts */ data: Array; /** * Opaque cursor for fetching the next page. Null when there are no more results. * @type {string} * @memberof AdminPaginatedStudyObjectiveUserCounts */ nextCursor: string | null; } /** * Check if a given object implements the AdminPaginatedStudyObjectiveUserCounts interface. */ export declare function instanceOfAdminPaginatedStudyObjectiveUserCounts(value: object): value is AdminPaginatedStudyObjectiveUserCounts; export declare function AdminPaginatedStudyObjectiveUserCountsFromJSON(json: any): AdminPaginatedStudyObjectiveUserCounts; export declare function AdminPaginatedStudyObjectiveUserCountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminPaginatedStudyObjectiveUserCounts; export declare function AdminPaginatedStudyObjectiveUserCountsToJSON(json: any): AdminPaginatedStudyObjectiveUserCounts; export declare function AdminPaginatedStudyObjectiveUserCountsToJSONTyped(value?: AdminPaginatedStudyObjectiveUserCounts | null, ignoreDiscriminator?: boolean): any;