/** * 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'; /** * Event Serializer * @export * @interface Event */ export interface Event { /** * * @type {string} * @memberof Event */ readonly pk: string; /** * * @type {{ [key: string]: any; }} * @memberof Event */ user?: { [key: string]: any; }; /** * * @type {EventActions} * @memberof Event */ action: EventActions; /** * * @type {string} * @memberof Event */ app: string; /** * * @type {{ [key: string]: any; }} * @memberof Event */ context?: { [key: string]: any; }; /** * * @type {string} * @memberof Event */ clientIp?: string | null; /** * * @type {Date} * @memberof Event */ readonly created: Date; /** * * @type {Date} * @memberof Event */ expires?: Date; /** * * @type {{ [key: string]: any; }} * @memberof Event */ brand?: { [key: string]: any; }; } /** * Check if a given object implements the Event interface. */ export declare function instanceOfEvent(value: object): value is Event; export declare function EventFromJSON(json: any): Event; export declare function EventFromJSONTyped(json: any, ignoreDiscriminator: boolean): Event; export declare function EventToJSON(json: any): Event; export declare function EventToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Event.d.ts.map