/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * 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. */ import type { PolicyEngineMode } from './PolicyEngineMode'; import type { NotificationModeEnum } from './NotificationModeEnum'; /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface PatchedRequestRuleRequest */ export interface PatchedRequestRuleRequest { /** * * @type {string} * @memberof PatchedRequestRuleRequest */ uuid?: string; /** * * @type {PolicyEngineMode} * @memberof PatchedRequestRuleRequest */ policyEngineMode?: PolicyEngineMode; /** * * @type {string} * @memberof PatchedRequestRuleRequest */ name?: string; /** * * @type {Array} * @memberof PatchedRequestRuleRequest */ notificationTransports?: Array; /** * * @type {NotificationModeEnum} * @memberof PatchedRequestRuleRequest */ notificationMode?: NotificationModeEnum; /** * * @type {number} * @memberof PatchedRequestRuleRequest */ minReviewers?: number; /** * * @type {boolean} * @memberof PatchedRequestRuleRequest */ minReviewersIsPerGroup?: boolean; /** * * @type {string} * @memberof PatchedRequestRuleRequest */ requestFlow?: string | null; } /** * Check if a given object implements the PatchedRequestRuleRequest interface. */ export declare function instanceOfPatchedRequestRuleRequest(value: object): value is PatchedRequestRuleRequest; export declare function PatchedRequestRuleRequestFromJSON(json: any): PatchedRequestRuleRequest; export declare function PatchedRequestRuleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedRequestRuleRequest; export declare function PatchedRequestRuleRequestToJSON(json: any): PatchedRequestRuleRequest; export declare function PatchedRequestRuleRequestToJSONTyped(value?: PatchedRequestRuleRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedRequestRuleRequest.d.ts.map