/** * 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 PatchedPasswordExpiryPolicyRequest */ export interface PatchedPasswordExpiryPolicyRequest { /** * * @type {string} * @memberof PatchedPasswordExpiryPolicyRequest */ 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 PatchedPasswordExpiryPolicyRequest */ executionLogging?: boolean; /** * * @type {number} * @memberof PatchedPasswordExpiryPolicyRequest */ days?: number; /** * * @type {boolean} * @memberof PatchedPasswordExpiryPolicyRequest */ denyOnly?: boolean; } /** * Check if a given object implements the PatchedPasswordExpiryPolicyRequest interface. */ export declare function instanceOfPatchedPasswordExpiryPolicyRequest(value: object): value is PatchedPasswordExpiryPolicyRequest; export declare function PatchedPasswordExpiryPolicyRequestFromJSON(json: any): PatchedPasswordExpiryPolicyRequest; export declare function PatchedPasswordExpiryPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedPasswordExpiryPolicyRequest; export declare function PatchedPasswordExpiryPolicyRequestToJSON(json: any): PatchedPasswordExpiryPolicyRequest; export declare function PatchedPasswordExpiryPolicyRequestToJSONTyped(value?: PatchedPasswordExpiryPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedPasswordExpiryPolicyRequest.d.ts.map