/** * 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. */ import type { ReviewerUser } from './ReviewerUser'; import type { ReviewerGroup } from './ReviewerGroup'; import type { ContentTypeEnum } from './ContentTypeEnum'; /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface LifecycleRule */ export interface LifecycleRule { /** * * @type {string} * @memberof LifecycleRule */ readonly id: string; /** * * @type {string} * @memberof LifecycleRule */ name: string; /** * * @type {ContentTypeEnum} * @memberof LifecycleRule */ contentType: ContentTypeEnum; /** * * @type {string} * @memberof LifecycleRule */ objectId?: string | null; /** * * @type {string} * @memberof LifecycleRule */ interval?: string; /** * * @type {string} * @memberof LifecycleRule */ gracePeriod?: string; /** * * @type {Array} * @memberof LifecycleRule */ reviewerGroups?: Array; /** * * @type {Array} * @memberof LifecycleRule */ readonly reviewerGroupsObj: Array; /** * * @type {number} * @memberof LifecycleRule */ minReviewers?: number; /** * * @type {boolean} * @memberof LifecycleRule */ minReviewersIsPerGroup?: boolean; /** * * @type {Array} * @memberof LifecycleRule */ reviewers: Array; /** * * @type {Array} * @memberof LifecycleRule */ readonly reviewersObj: Array; /** * Select which transports should be used to notify the reviewers. If none are selected, the notification will only be shown in the authentik UI. * @type {Array} * @memberof LifecycleRule */ notificationTransports?: Array; /** * * @type {string} * @memberof LifecycleRule */ readonly targetVerbose: string; } /** * Check if a given object implements the LifecycleRule interface. */ export declare function instanceOfLifecycleRule(value: object): value is LifecycleRule; export declare function LifecycleRuleFromJSON(json: any): LifecycleRule; export declare function LifecycleRuleFromJSONTyped(json: any, ignoreDiscriminator: boolean): LifecycleRule; export declare function LifecycleRuleToJSON(json: any): LifecycleRule; export declare function LifecycleRuleToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=LifecycleRule.d.ts.map