/** * 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 ReputationPolicyRequest */ export interface ReputationPolicyRequest { /** * * @type {string} * @memberof ReputationPolicyRequest */ 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 ReputationPolicyRequest */ executionLogging?: boolean; /** * * @type {boolean} * @memberof ReputationPolicyRequest */ checkIp?: boolean; /** * * @type {boolean} * @memberof ReputationPolicyRequest */ checkUsername?: boolean; /** * * @type {number} * @memberof ReputationPolicyRequest */ threshold?: number; } /** * Check if a given object implements the ReputationPolicyRequest interface. */ export declare function instanceOfReputationPolicyRequest(value: object): value is ReputationPolicyRequest; export declare function ReputationPolicyRequestFromJSON(json: any): ReputationPolicyRequest; export declare function ReputationPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReputationPolicyRequest; export declare function ReputationPolicyRequestToJSON(json: any): ReputationPolicyRequest; export declare function ReputationPolicyRequestToJSONTyped(value?: ReputationPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ReputationPolicyRequest.d.ts.map