Interface TestingOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TestingOptions
,TestingOptions.Builder
public interface TestingOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestingOptions.TestingChallenge
getTestingChallenge()
For challenge-based keys only (CHECKBOX, INVISIBLE), all challenge requests for this site will return nocaptcha if NOCAPTCHA, or an unsolvable challenge if CHALLENGE.int
getTestingChallengeValue()
For challenge-based keys only (CHECKBOX, INVISIBLE), all challenge requests for this site will return nocaptcha if NOCAPTCHA, or an unsolvable challenge if CHALLENGE.float
getTestingScore()
All assessments for this Key will return this score.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTestingScore
float getTestingScore()
All assessments for this Key will return this score. Must be between 0 (likely not legitimate) and 1 (likely legitimate) inclusive.
float testing_score = 1;
- Returns:
- The testingScore.
-
getTestingChallengeValue
int getTestingChallengeValue()
For challenge-based keys only (CHECKBOX, INVISIBLE), all challenge requests for this site will return nocaptcha if NOCAPTCHA, or an unsolvable challenge if CHALLENGE.
.google.cloud.recaptchaenterprise.v1.TestingOptions.TestingChallenge testing_challenge = 2;
- Returns:
- The enum numeric value on the wire for testingChallenge.
-
getTestingChallenge
TestingOptions.TestingChallenge getTestingChallenge()
For challenge-based keys only (CHECKBOX, INVISIBLE), all challenge requests for this site will return nocaptcha if NOCAPTCHA, or an unsolvable challenge if CHALLENGE.
.google.cloud.recaptchaenterprise.v1.TestingOptions.TestingChallenge testing_challenge = 2;
- Returns:
- The testingChallenge.
-
-