/** * 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. */ /** * User agent device * @export * @interface AuthenticatedSessionUserAgentDevice */ export interface AuthenticatedSessionUserAgentDevice { /** * * @type {string} * @memberof AuthenticatedSessionUserAgentDevice */ brand: string; /** * * @type {string} * @memberof AuthenticatedSessionUserAgentDevice */ family: string; /** * * @type {string} * @memberof AuthenticatedSessionUserAgentDevice */ model: string; } /** * Check if a given object implements the AuthenticatedSessionUserAgentDevice interface. */ export declare function instanceOfAuthenticatedSessionUserAgentDevice(value: object): value is AuthenticatedSessionUserAgentDevice; export declare function AuthenticatedSessionUserAgentDeviceFromJSON(json: any): AuthenticatedSessionUserAgentDevice; export declare function AuthenticatedSessionUserAgentDeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatedSessionUserAgentDevice; export declare function AuthenticatedSessionUserAgentDeviceToJSON(json: any): AuthenticatedSessionUserAgentDevice; export declare function AuthenticatedSessionUserAgentDeviceToJSONTyped(value?: AuthenticatedSessionUserAgentDevice | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatedSessionUserAgentDevice.d.ts.map