/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * 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. */ /** * Password Expiry Policy Serializer * @export * @interface PasswordExpiryPolicyRequest */ export interface PasswordExpiryPolicyRequest { /** * * @type {string} * @memberof PasswordExpiryPolicyRequest */ name: string; /** * When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged. * @type {boolean} * @memberof PasswordExpiryPolicyRequest */ executionLogging?: boolean; /** * * @type {number} * @memberof PasswordExpiryPolicyRequest */ days: number; /** * * @type {boolean} * @memberof PasswordExpiryPolicyRequest */ denyOnly?: boolean; } /** * Check if a given object implements the PasswordExpiryPolicyRequest interface. */ export declare function instanceOfPasswordExpiryPolicyRequest(value: object): value is PasswordExpiryPolicyRequest; export declare function PasswordExpiryPolicyRequestFromJSON(json: any): PasswordExpiryPolicyRequest; export declare function PasswordExpiryPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordExpiryPolicyRequest; export declare function PasswordExpiryPolicyRequestToJSON(json: any): PasswordExpiryPolicyRequest; export declare function PasswordExpiryPolicyRequestToJSONTyped(value?: PasswordExpiryPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PasswordExpiryPolicyRequest.d.ts.map