/** * 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 { AuthenticatedSessionGeoIp } from './AuthenticatedSessionGeoIp'; import type { AuthenticatedSessionAsn } from './AuthenticatedSessionAsn'; import type { AuthenticatedSessionUserAgent } from './AuthenticatedSessionUserAgent'; /** * AuthenticatedSession Serializer * @export * @interface AuthenticatedSession */ export interface AuthenticatedSession { /** * * @type {string} * @memberof AuthenticatedSession */ uuid?: string; /** * Check if session is currently active session * @type {boolean} * @memberof AuthenticatedSession */ readonly current: boolean; /** * * @type {AuthenticatedSessionUserAgent} * @memberof AuthenticatedSession */ userAgent: AuthenticatedSessionUserAgent; /** * * @type {AuthenticatedSessionGeoIp} * @memberof AuthenticatedSession */ geoIp: AuthenticatedSessionGeoIp | null; /** * * @type {AuthenticatedSessionAsn} * @memberof AuthenticatedSession */ asn: AuthenticatedSessionAsn | null; /** * * @type {number} * @memberof AuthenticatedSession */ user: number; /** * * @type {string} * @memberof AuthenticatedSession */ readonly lastIp: string; /** * * @type {string} * @memberof AuthenticatedSession */ readonly lastUserAgent: string; /** * * @type {Date} * @memberof AuthenticatedSession */ readonly lastUsed: Date; /** * * @type {Date} * @memberof AuthenticatedSession */ readonly expires: Date; } /** * Check if a given object implements the AuthenticatedSession interface. */ export declare function instanceOfAuthenticatedSession(value: object): value is AuthenticatedSession; export declare function AuthenticatedSessionFromJSON(json: any): AuthenticatedSession; export declare function AuthenticatedSessionFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatedSession; export declare function AuthenticatedSessionToJSON(json: any): AuthenticatedSession; export declare function AuthenticatedSessionToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatedSession.d.ts.map