/** * 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 Uniqueness Policy Serializer * @export * @interface PatchedUniquePasswordPolicyRequest */ export interface PatchedUniquePasswordPolicyRequest { /** * * @type {string} * @memberof PatchedUniquePasswordPolicyRequest */ 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 PatchedUniquePasswordPolicyRequest */ executionLogging?: boolean; /** * Field key to check, field keys defined in Prompt stages are available. * @type {string} * @memberof PatchedUniquePasswordPolicyRequest */ passwordField?: string; /** * Number of passwords to check against. * @type {number} * @memberof PatchedUniquePasswordPolicyRequest */ numHistoricalPasswords?: number; } /** * Check if a given object implements the PatchedUniquePasswordPolicyRequest interface. */ export declare function instanceOfPatchedUniquePasswordPolicyRequest(value: object): value is PatchedUniquePasswordPolicyRequest; export declare function PatchedUniquePasswordPolicyRequestFromJSON(json: any): PatchedUniquePasswordPolicyRequest; export declare function PatchedUniquePasswordPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedUniquePasswordPolicyRequest; export declare function PatchedUniquePasswordPolicyRequestToJSON(json: any): PatchedUniquePasswordPolicyRequest; export declare function PatchedUniquePasswordPolicyRequestToJSONTyped(value?: PatchedUniquePasswordPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedUniquePasswordPolicyRequest.d.ts.map