/** * 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 { ContentTypeEnum } from './ContentTypeEnum'; /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface LifecycleRuleRequest */ export interface LifecycleRuleRequest { /** * * @type {string} * @memberof LifecycleRuleRequest */ name: string; /** * * @type {ContentTypeEnum} * @memberof LifecycleRuleRequest */ contentType: ContentTypeEnum; /** * * @type {string} * @memberof LifecycleRuleRequest */ objectId?: string | null; /** * * @type {string} * @memberof LifecycleRuleRequest */ interval?: string; /** * * @type {string} * @memberof LifecycleRuleRequest */ gracePeriod?: string; /** * * @type {Array} * @memberof LifecycleRuleRequest */ reviewerGroups?: Array; /** * * @type {number} * @memberof LifecycleRuleRequest */ minReviewers?: number; /** * * @type {boolean} * @memberof LifecycleRuleRequest */ minReviewersIsPerGroup?: boolean; /** * * @type {Array} * @memberof LifecycleRuleRequest */ reviewers: 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 LifecycleRuleRequest */ notificationTransports?: Array; } /** * Check if a given object implements the LifecycleRuleRequest interface. */ export declare function instanceOfLifecycleRuleRequest(value: object): value is LifecycleRuleRequest; export declare function LifecycleRuleRequestFromJSON(json: any): LifecycleRuleRequest; export declare function LifecycleRuleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LifecycleRuleRequest; export declare function LifecycleRuleRequestToJSON(json: any): LifecycleRuleRequest; export declare function LifecycleRuleRequestToJSONTyped(value?: LifecycleRuleRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=LifecycleRuleRequest.d.ts.map