/** * 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 PatchedLifecycleRuleRequest */ export interface PatchedLifecycleRuleRequest { /** * * @type {string} * @memberof PatchedLifecycleRuleRequest */ name?: string; /** * * @type {ContentTypeEnum} * @memberof PatchedLifecycleRuleRequest */ contentType?: ContentTypeEnum; /** * * @type {string} * @memberof PatchedLifecycleRuleRequest */ objectId?: string | null; /** * * @type {string} * @memberof PatchedLifecycleRuleRequest */ interval?: string; /** * * @type {string} * @memberof PatchedLifecycleRuleRequest */ gracePeriod?: string; /** * * @type {Array} * @memberof PatchedLifecycleRuleRequest */ reviewerGroups?: Array; /** * * @type {number} * @memberof PatchedLifecycleRuleRequest */ minReviewers?: number; /** * * @type {boolean} * @memberof PatchedLifecycleRuleRequest */ minReviewersIsPerGroup?: boolean; /** * * @type {Array} * @memberof PatchedLifecycleRuleRequest */ 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 PatchedLifecycleRuleRequest */ notificationTransports?: Array; } /** * Check if a given object implements the PatchedLifecycleRuleRequest interface. */ export declare function instanceOfPatchedLifecycleRuleRequest(value: object): value is PatchedLifecycleRuleRequest; export declare function PatchedLifecycleRuleRequestFromJSON(json: any): PatchedLifecycleRuleRequest; export declare function PatchedLifecycleRuleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedLifecycleRuleRequest; export declare function PatchedLifecycleRuleRequestToJSON(json: any): PatchedLifecycleRuleRequest; export declare function PatchedLifecycleRuleRequestToJSONTyped(value?: PatchedLifecycleRuleRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedLifecycleRuleRequest.d.ts.map