com.clarifai.grpc.api.MultiConceptMappingJobResponseOrBuilder 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 MultiConceptMappingJobResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.MultiConceptMappingJobResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* The response status.
*
*
* .clarifai.api.status.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
*
* The response status.
*
*
* .clarifai.api.status.Status status = 1;
* @return The status.
*/
com.clarifai.grpc.api.status.Status getStatus();
/**
*
* The response status.
*
*
* .clarifai.api.status.Status status = 1;
*/
com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder();
/**
*
* The ids of the concept mapping jobs underway.
*
*
* repeated string ids = 2;
* @return A list containing the ids.
*/
java.util.List
getIdsList();
/**
*
* The ids of the concept mapping jobs underway.
*
*
* repeated string ids = 2;
* @return The count of ids.
*/
int getIdsCount();
/**
*
* The ids of the concept mapping jobs underway.
*
*
* repeated string ids = 2;
* @param index The index of the element to return.
* @return The ids at the given index.
*/
java.lang.String getIds(int index);
/**
*
* The ids of the concept mapping jobs underway.
*
*
* repeated string ids = 2;
* @param index The index of the value to return.
* @return The bytes of the ids at the given index.
*/
com.google.protobuf.ByteString
getIdsBytes(int index);
}