/** * 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 { AdminStudyObjectiveOriginCounts } from './AdminStudyObjectiveOriginCounts'; /** * * @export * @interface AdminStudyObjectiveUserCounts */ export interface AdminStudyObjectiveUserCounts { /** * * @type {string} * @memberof AdminStudyObjectiveUserCounts */ accountUserId: string; /** * External identifier of the user who owns the objectives * @type {string} * @memberof AdminStudyObjectiveUserCounts */ userId: string | null; /** * Per-origin objective counts for this user * @type {AdminStudyObjectiveOriginCounts} * @memberof AdminStudyObjectiveUserCounts */ counts: AdminStudyObjectiveOriginCounts; /** * When the user's most recent objective in the set was created * @type {Date} * @memberof AdminStudyObjectiveUserCounts */ lastObjectiveCreatedAt: Date; } /** * Check if a given object implements the AdminStudyObjectiveUserCounts interface. */ export declare function instanceOfAdminStudyObjectiveUserCounts(value: object): value is AdminStudyObjectiveUserCounts; export declare function AdminStudyObjectiveUserCountsFromJSON(json: any): AdminStudyObjectiveUserCounts; export declare function AdminStudyObjectiveUserCountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminStudyObjectiveUserCounts; export declare function AdminStudyObjectiveUserCountsToJSON(json: any): AdminStudyObjectiveUserCounts; export declare function AdminStudyObjectiveUserCountsToJSONTyped(value?: AdminStudyObjectiveUserCounts | null, ignoreDiscriminator?: boolean): any;