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