com.clarifai.grpc.api.RunnerItemOrBuilder Maven / Gradle / Ivy
// 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();
/**
*
* TODO(zeiler): make these options a oneof.
* first work to do would be an inference runner.
*
*
* .clarifai.api.PostModelOutputsRequest post_model_outputs_request = 3;
* @return Whether the postModelOutputsRequest field is set.
*/
boolean hasPostModelOutputsRequest();
/**
*
* TODO(zeiler): make these options a oneof.
* first work to do would be an inference runner.
*
*
* .clarifai.api.PostModelOutputsRequest post_model_outputs_request = 3;
* @return The postModelOutputsRequest.
*/
com.clarifai.grpc.api.PostModelOutputsRequest getPostModelOutputsRequest();
/**
*
* TODO(zeiler): make these options a oneof.
* first work to do would be an inference runner.
*
*
* .clarifai.api.PostModelOutputsRequest post_model_outputs_request = 3;
*/
com.clarifai.grpc.api.PostModelOutputsRequestOrBuilder getPostModelOutputsRequestOrBuilder();
}