/** * 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 { PartialUser } from './PartialUser'; import type { PartialGroup } from './PartialGroup'; /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface RelatedRule */ export interface RelatedRule { /** * * @type {string} * @memberof RelatedRule */ id?: string; /** * * @type {string} * @memberof RelatedRule */ name: string; /** * * @type {Array} * @memberof RelatedRule */ readonly reviewerGroups: Array; /** * * @type {number} * @memberof RelatedRule */ readonly minReviewers: number; /** * * @type {Array} * @memberof RelatedRule */ readonly reviewers: Array; } /** * Check if a given object implements the RelatedRule interface. */ export declare function instanceOfRelatedRule(value: object): value is RelatedRule; export declare function RelatedRuleFromJSON(json: any): RelatedRule; export declare function RelatedRuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelatedRule; export declare function RelatedRuleToJSON(json: any): RelatedRule; export declare function RelatedRuleToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RelatedRule.d.ts.map