/** * 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 DeviceUserRequest */ export interface DeviceUserRequest { /** * * @type {string} * @memberof DeviceUserRequest */ id: string; /** * * @type {string} * @memberof DeviceUserRequest */ username?: string; /** * * @type {string} * @memberof DeviceUserRequest */ name?: string; /** * * @type {string} * @memberof DeviceUserRequest */ home?: string; } /** * Check if a given object implements the DeviceUserRequest interface. */ export declare function instanceOfDeviceUserRequest(value: object): value is DeviceUserRequest; export declare function DeviceUserRequestFromJSON(json: any): DeviceUserRequest; export declare function DeviceUserRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceUserRequest; export declare function DeviceUserRequestToJSON(json: any): DeviceUserRequest; export declare function DeviceUserRequestToJSONTyped(value?: DeviceUserRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeviceUserRequest.d.ts.map