/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * 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. */ import type { EventActions } from './EventActions'; /** * Count of events of action created on day * @export * @interface EventVolume */ export interface EventVolume { /** * * @type {EventActions} * @memberof EventVolume */ action: EventActions; /** * * @type {Date} * @memberof EventVolume */ time: Date; /** * * @type {number} * @memberof EventVolume */ count: number; } /** * Check if a given object implements the EventVolume interface. */ export declare function instanceOfEventVolume(value: object): value is EventVolume; export declare function EventVolumeFromJSON(json: any): EventVolume; export declare function EventVolumeFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventVolume; export declare function EventVolumeToJSON(json: any): EventVolume; export declare function EventVolumeToJSONTyped(value?: EventVolume | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EventVolume.d.ts.map