com.clarifai.grpc.api.TaskReviewMetricsOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface TaskReviewMetricsOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.TaskReviewMetrics)
com.google.protobuf.MessageOrBuilder {
/**
*
* Estimated number of reviewed inputs.
*
*
* uint64 inputs_count_estimated = 1;
* @return The inputsCountEstimated.
*/
long getInputsCountEstimated();
/**
*
* Estimated percent of inputs that were reviewed. Calculated as count of reviewed inputs / total task inputs
* This is a value between 0 and 100, where 0 = 0% and 100 = 100%.
*
*
* uint32 inputs_percent_estimated = 2;
* @return The inputsPercentEstimated.
*/
int getInputsPercentEstimated();
}