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