com.clarifai.grpc.api.RunnerItemOrBuilder 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 RunnerItemOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.RunnerItem)
com.google.protobuf.MessageOrBuilder {
/**
*
* A UUID hash for this work item.
*
*
* string id = 1;
* @return The id.
*/
java.lang.String getId();
/**
*
* A UUID hash for this work item.
*
*
* string id = 1;
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
/**
*
* A description of the work to be done in case needed for UIs.
*
*
* string description = 2;
* @return The description.
*/
java.lang.String getDescription();
/**
*
* A description of the work to be done in case needed for UIs.
*
*
* string description = 2;
* @return The bytes for description.
*/
com.google.protobuf.ByteString
getDescriptionBytes();
/**
*
* Information on how to process the given RunnerItem.
*
*
* .clarifai.api.ProcessingInfo processing_info = 3;
* @return Whether the processingInfo field is set.
*/
boolean hasProcessingInfo();
/**
*
* Information on how to process the given RunnerItem.
*
*
* .clarifai.api.ProcessingInfo processing_info = 3;
* @return The processingInfo.
*/
com.clarifai.grpc.api.ProcessingInfo getProcessingInfo();
/**
*
* Information on how to process the given RunnerItem.
*
*
* .clarifai.api.ProcessingInfo processing_info = 3;
*/
com.clarifai.grpc.api.ProcessingInfoOrBuilder getProcessingInfoOrBuilder();
/**
*
* Model prediction request from a user.
*
*
* .clarifai.api.PostModelOutputsRequest post_model_outputs_request = 4;
* @return Whether the postModelOutputsRequest field is set.
*/
boolean hasPostModelOutputsRequest();
/**
*
* Model prediction request from a user.
*
*
* .clarifai.api.PostModelOutputsRequest post_model_outputs_request = 4;
* @return The postModelOutputsRequest.
*/
com.clarifai.grpc.api.PostModelOutputsRequest getPostModelOutputsRequest();
/**
*
* Model prediction request from a user.
*
*
* .clarifai.api.PostModelOutputsRequest post_model_outputs_request = 4;
*/
com.clarifai.grpc.api.PostModelOutputsRequestOrBuilder getPostModelOutputsRequestOrBuilder();
public com.clarifai.grpc.api.RunnerItem.RequestCase getRequestCase();
}