/** * 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 Process */ export interface Process { /** * * @type {number} * @memberof Process */ id: number; /** * * @type {string} * @memberof Process */ name: string; /** * * @type {string} * @memberof Process */ user?: string; } /** * Check if a given object implements the Process interface. */ export declare function instanceOfProcess(value: object): value is Process; export declare function ProcessFromJSON(json: any): Process; export declare function ProcessFromJSONTyped(json: any, ignoreDiscriminator: boolean): Process; export declare function ProcessToJSON(json: any): Process; export declare function ProcessToJSONTyped(value?: Process | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Process.d.ts.map