RecaptchaConfig interface

The request interface for updating a reCAPTCHA Config. By enabling reCAPTCHA Enterprise Integration you are agreeing to reCAPTCHA Enterprise Term of Service.

Signature:

export interface RecaptchaConfig 

Properties

Property Type Description
emailPasswordEnforcementState RecaptchaProviderEnforcementState The enforcement state of the email password provider.
managedRules RecaptchaManagedRule[] The reCAPTCHA managed rules.
recaptchaKeys RecaptchaKey[] The reCAPTCHA keys.
useAccountDefender boolean Whether to use account defender for reCAPTCHA assessment. The default value is false.

RecaptchaConfig.emailPasswordEnforcementState

The enforcement state of the email password provider.

Signature:

emailPasswordEnforcementState?: RecaptchaProviderEnforcementState;

RecaptchaConfig.managedRules

The reCAPTCHA managed rules.

Signature:

managedRules?: RecaptchaManagedRule[];

RecaptchaConfig.recaptchaKeys

The reCAPTCHA keys.

Signature:

recaptchaKeys?: RecaptchaKey[];

RecaptchaConfig.useAccountDefender

Whether to use account defender for reCAPTCHA assessment. The default value is false.

Signature:

useAccountDefender?: boolean;