com.clarifai.grpc.api.PostAnnotationSearchMetricsRequestOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/service.proto
package com.clarifai.grpc.api;
public interface PostAnnotationSearchMetricsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PostAnnotationSearchMetricsRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return Whether the userAppId field is set.
*/
boolean hasUserAppId();
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return The userAppId.
*/
com.clarifai.grpc.api.UserAppIDSet getUserAppId();
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder();
/**
*
* A unique customer facing id to identify this eval request
*
*
* string id = 2;
* @return The id.
*/
java.lang.String getId();
/**
*
* A unique customer facing id to identify this eval request
*
*
* string id = 2;
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
/**
*
* The ground truth we are evaluating against
*
*
* .clarifai.api.Search ground_truth = 3;
* @return Whether the groundTruth field is set.
*/
boolean hasGroundTruth();
/**
*
* The ground truth we are evaluating against
*
*
* .clarifai.api.Search ground_truth = 3;
* @return The groundTruth.
*/
com.clarifai.grpc.api.Search getGroundTruth();
/**
*
* The ground truth we are evaluating against
*
*
* .clarifai.api.Search ground_truth = 3;
*/
com.clarifai.grpc.api.SearchOrBuilder getGroundTruthOrBuilder();
/**
*
* The set we are evaluating
*
*
* .clarifai.api.Search search_to_eval = 4;
* @return Whether the searchToEval field is set.
*/
boolean hasSearchToEval();
/**
*
* The set we are evaluating
*
*
* .clarifai.api.Search search_to_eval = 4;
* @return The searchToEval.
*/
com.clarifai.grpc.api.Search getSearchToEval();
/**
*
* The set we are evaluating
*
*
* .clarifai.api.Search search_to_eval = 4;
*/
com.clarifai.grpc.api.SearchOrBuilder getSearchToEvalOrBuilder();
/**
*
* List of concepts to evaluate are expected to be in data.concepts
* If nil, then all app concepts are used
*
*
* .clarifai.api.Data data = 5;
* @return Whether the data field is set.
*/
boolean hasData();
/**
*
* List of concepts to evaluate are expected to be in data.concepts
* If nil, then all app concepts are used
*
*
* .clarifai.api.Data data = 5;
* @return The data.
*/
com.clarifai.grpc.api.Data getData();
/**
*
* List of concepts to evaluate are expected to be in data.concepts
* If nil, then all app concepts are used
*
*
* .clarifai.api.Data data = 5;
*/
com.clarifai.grpc.api.DataOrBuilder getDataOrBuilder();
/**
*
* The type of evaluation to use
*
*
* .clarifai.api.EvaluationType evaluation_type = 6;
* @return The enum numeric value on the wire for evaluationType.
*/
int getEvaluationTypeValue();
/**
*
* The type of evaluation to use
*
*
* .clarifai.api.EvaluationType evaluation_type = 6;
* @return The evaluationType.
*/
com.clarifai.grpc.api.EvaluationType getEvaluationType();
}