com.clarifai.grpc.api.TaskInputSourceOrBuilder 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 TaskInputSourceOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.TaskInputSource)
com.google.protobuf.MessageOrBuilder {
/**
*
* Type of input source.
*
*
* .clarifai.api.TaskInputSource.TaskInputSourceType type = 1;
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
*
* Type of input source.
*
*
* .clarifai.api.TaskInputSource.TaskInputSourceType type = 1;
* @return The type.
*/
com.clarifai.grpc.api.TaskInputSource.TaskInputSourceType getType();
/**
*
* If type is SAVED_SEARCH, then this is the saved search id.
*
*
* string id = 2;
* @return The id.
*/
java.lang.String getId();
/**
*
* If type is SAVED_SEARCH, then this is the saved search id.
*
*
* string id = 2;
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
}