/** * 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 HardwareRequest */ export interface HardwareRequest { /** * * @type {string} * @memberof HardwareRequest */ model?: string; /** * * @type {string} * @memberof HardwareRequest */ manufacturer?: string; /** * * @type {string} * @memberof HardwareRequest */ serial: string; /** * * @type {string} * @memberof HardwareRequest */ cpuName?: string; /** * * @type {number} * @memberof HardwareRequest */ cpuCount?: number; /** * * @type {number} * @memberof HardwareRequest */ memoryBytes?: number; } /** * Check if a given object implements the HardwareRequest interface. */ export declare function instanceOfHardwareRequest(value: object): value is HardwareRequest; export declare function HardwareRequestFromJSON(json: any): HardwareRequest; export declare function HardwareRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): HardwareRequest; export declare function HardwareRequestToJSON(json: any): HardwareRequest; export declare function HardwareRequestToJSONTyped(value?: HardwareRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=HardwareRequest.d.ts.map