Interface ChallengeMetricsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ChallengeMetrics
,ChallengeMetrics.Builder
public interface ChallengeMetricsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getFailedCount()
Count of submitted challenge solutions that were incorrect or otherwise deemed suspicious such that a subsequent challenge was triggered.long
getNocaptchaCount()
Count of nocaptchas (successful verification without a challenge) issued.long
getPageloadCount()
Count of reCAPTCHA checkboxes or badges rendered.long
getPassedCount()
Count of nocaptchas (successful verification without a challenge) plus submitted challenge solutions that were correct and resulted in verification.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPageloadCount
long getPageloadCount()
Count of reCAPTCHA checkboxes or badges rendered. This is mostly equivalent to a count of pageloads for pages that include reCAPTCHA.
int64 pageload_count = 1;
- Returns:
- The pageloadCount.
-
getNocaptchaCount
long getNocaptchaCount()
Count of nocaptchas (successful verification without a challenge) issued.
int64 nocaptcha_count = 2;
- Returns:
- The nocaptchaCount.
-
getFailedCount
long getFailedCount()
Count of submitted challenge solutions that were incorrect or otherwise deemed suspicious such that a subsequent challenge was triggered.
int64 failed_count = 3;
- Returns:
- The failedCount.
-
getPassedCount
long getPassedCount()
Count of nocaptchas (successful verification without a challenge) plus submitted challenge solutions that were correct and resulted in verification.
int64 passed_count = 4;
- Returns:
- The passedCount.
-
-