/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Count of unique users in events and aggregated counts per specified deltas * @export * @interface EventStats */ export interface EventStats { /** * * @type {number} * @memberof EventStats */ uniqueUsers: number; /** * * @type {{ [key: string]: any; }} * @memberof EventStats */ countStep: { [key: string]: any; }; } /** * Check if a given object implements the EventStats interface. */ export declare function instanceOfEventStats(value: object): value is EventStats; export declare function EventStatsFromJSON(json: any): EventStats; export declare function EventStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventStats; export declare function EventStatsToJSON(json: any): EventStats; export declare function EventStatsToJSONTyped(value?: EventStats | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EventStats.d.ts.map