/** * 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. */ /** * Get versions * @export * @interface SystemInfoRuntime */ export interface SystemInfoRuntime { /** * * @type {string} * @memberof SystemInfoRuntime */ pythonVersion: string; /** * * @type {string} * @memberof SystemInfoRuntime */ environment: string; /** * * @type {string} * @memberof SystemInfoRuntime */ architecture: string; /** * * @type {string} * @memberof SystemInfoRuntime */ platform: string; /** * * @type {string} * @memberof SystemInfoRuntime */ uname: string; /** * * @type {string} * @memberof SystemInfoRuntime */ opensslVersion: string; /** * * @type {boolean} * @memberof SystemInfoRuntime */ opensslFipsEnabled: boolean | null; /** * * @type {string} * @memberof SystemInfoRuntime */ authentikVersion: string; } /** * Check if a given object implements the SystemInfoRuntime interface. */ export declare function instanceOfSystemInfoRuntime(value: object): value is SystemInfoRuntime; export declare function SystemInfoRuntimeFromJSON(json: any): SystemInfoRuntime; export declare function SystemInfoRuntimeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemInfoRuntime; export declare function SystemInfoRuntimeToJSON(json: any): SystemInfoRuntime; export declare function SystemInfoRuntimeToJSONTyped(value?: SystemInfoRuntime | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SystemInfoRuntime.d.ts.map