/** * 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 EventRequest */ export interface EventRequest { /** * * @type {{ [key: string]: any; }} * @memberof EventRequest */ user?: { [key: string]: any; }; /** * * @type {EventActions} * @memberof EventRequest */ action: EventActions; /** * * @type {string} * @memberof EventRequest */ app: string; /** * * @type {{ [key: string]: any; }} * @memberof EventRequest */ context?: { [key: string]: any; }; /** * * @type {string} * @memberof EventRequest */ clientIp?: string | null; /** * * @type {Date} * @memberof EventRequest */ expires?: Date; /** * * @type {{ [key: string]: any; }} * @memberof EventRequest */ brand?: { [key: string]: any; }; } /** * Check if a given object implements the EventRequest interface. */ export declare function instanceOfEventRequest(value: object): value is EventRequest; export declare function EventRequestFromJSON(json: any): EventRequest; export declare function EventRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventRequest; export declare function EventRequestToJSON(json: any): EventRequest; export declare function EventRequestToJSONTyped(value?: EventRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EventRequest.d.ts.map