/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0 * 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 RequestRuleRequest */ export interface RequestRuleRequest { /** * * @type {string} * @memberof RequestRuleRequest */ uuid?: string; /** * * @type {PolicyEngineMode} * @memberof RequestRuleRequest */ policyEngineMode?: PolicyEngineMode; /** * * @type {string} * @memberof RequestRuleRequest */ name: string; /** * * @type {Array} * @memberof RequestRuleRequest */ notificationTransports?: Array; /** * * @type {NotificationModeEnum} * @memberof RequestRuleRequest */ notificationMode?: NotificationModeEnum; /** * * @type {number} * @memberof RequestRuleRequest */ minReviewers?: number; /** * * @type {boolean} * @memberof RequestRuleRequest */ minReviewersIsPerGroup?: boolean; /** * * @type {string} * @memberof RequestRuleRequest */ requestFlow?: string | null; } /** * Check if a given object implements the RequestRuleRequest interface. */ export declare function instanceOfRequestRuleRequest(value: object): value is RequestRuleRequest; export declare function RequestRuleRequestFromJSON(json: any): RequestRuleRequest; export declare function RequestRuleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestRuleRequest; export declare function RequestRuleRequestToJSON(json: any): RequestRuleRequest; export declare function RequestRuleRequestToJSONTyped(value?: RequestRuleRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RequestRuleRequest.d.ts.map