/** * 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. */ /** * Reputation Policy Serializer * @export * @interface PatchedReputationPolicyRequest */ export interface PatchedReputationPolicyRequest { /** * * @type {string} * @memberof PatchedReputationPolicyRequest */ 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 PatchedReputationPolicyRequest */ executionLogging?: boolean; /** * * @type {boolean} * @memberof PatchedReputationPolicyRequest */ checkIp?: boolean; /** * * @type {boolean} * @memberof PatchedReputationPolicyRequest */ checkUsername?: boolean; /** * * @type {number} * @memberof PatchedReputationPolicyRequest */ threshold?: number; } /** * Check if a given object implements the PatchedReputationPolicyRequest interface. */ export declare function instanceOfPatchedReputationPolicyRequest(value: object): value is PatchedReputationPolicyRequest; export declare function PatchedReputationPolicyRequestFromJSON(json: any): PatchedReputationPolicyRequest; export declare function PatchedReputationPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedReputationPolicyRequest; export declare function PatchedReputationPolicyRequestToJSON(json: any): PatchedReputationPolicyRequest; export declare function PatchedReputationPolicyRequestToJSONTyped(value?: PatchedReputationPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedReputationPolicyRequest.d.ts.map