/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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. */ /** * * @export * @interface DeviceUser */ export interface DeviceUser { /** * * @type {string} * @memberof DeviceUser */ id: string; /** * * @type {string} * @memberof DeviceUser */ username?: string; /** * * @type {string} * @memberof DeviceUser */ name?: string; /** * * @type {string} * @memberof DeviceUser */ home?: string; } /** * Check if a given object implements the DeviceUser interface. */ export declare function instanceOfDeviceUser(value: object): value is DeviceUser; export declare function DeviceUserFromJSON(json: any): DeviceUser; export declare function DeviceUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceUser; export declare function DeviceUserToJSON(json: any): DeviceUser; export declare function DeviceUserToJSONTyped(value?: DeviceUser | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeviceUser.d.ts.map