/** * 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 RequestRule */ export interface RequestRule { /** * * @type {string} * @memberof RequestRule */ uuid?: string; /** * * @type {string} * @memberof RequestRule */ readonly pbmUuid: string; /** * * @type {PolicyEngineMode} * @memberof RequestRule */ policyEngineMode?: PolicyEngineMode; /** * * @type {string} * @memberof RequestRule */ name: string; /** * * @type {Array} * @memberof RequestRule */ readonly targets: Array; /** * * @type {Array} * @memberof RequestRule */ notificationTransports?: Array; /** * * @type {NotificationModeEnum} * @memberof RequestRule */ notificationMode?: NotificationModeEnum; /** * * @type {number} * @memberof RequestRule */ minReviewers?: number; /** * * @type {boolean} * @memberof RequestRule */ minReviewersIsPerGroup?: boolean; /** * * @type {string} * @memberof RequestRule */ requestFlow?: string | null; } /** * Check if a given object implements the RequestRule interface. */ export declare function instanceOfRequestRule(value: object): value is RequestRule; export declare function RequestRuleFromJSON(json: any): RequestRule; export declare function RequestRuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestRule; export declare function RequestRuleToJSON(json: any): RequestRule; export declare function RequestRuleToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RequestRule.d.ts.map