com.clarifai.grpc.api.DeleteAnnotationsRequestOrBuilder 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 DeleteAnnotationsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.DeleteAnnotationsRequest)
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();
/**
*
* Delete annotations with IDs
*
*
* repeated string ids = 2;
* @return A list containing the ids.
*/
java.util.List
getIdsList();
/**
*
* Delete annotations with IDs
*
*
* repeated string ids = 2;
* @return The count of ids.
*/
int getIdsCount();
/**
*
* Delete annotations with IDs
*
*
* 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);
/**
*
* Delete annotations with IDs
*
*
* 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);
/**
*
* Delete annotations for these Input IDs
* Note that 'ids' are optional but if the are provided the number and order in
* 'ids' and 'input_ids' should match
* If you do not specifiy 'ids' all the annotations for 'input_ids' are deleted
* However you need to specify at least one value for 'input_ids'
* i.e. this API does not support deleting all annotations
*
*
* repeated string input_ids = 3;
* @return A list containing the inputIds.
*/
java.util.List
getInputIdsList();
/**
*
* Delete annotations for these Input IDs
* Note that 'ids' are optional but if the are provided the number and order in
* 'ids' and 'input_ids' should match
* If you do not specifiy 'ids' all the annotations for 'input_ids' are deleted
* However you need to specify at least one value for 'input_ids'
* i.e. this API does not support deleting all annotations
*
*
* repeated string input_ids = 3;
* @return The count of inputIds.
*/
int getInputIdsCount();
/**
*
* Delete annotations for these Input IDs
* Note that 'ids' are optional but if the are provided the number and order in
* 'ids' and 'input_ids' should match
* If you do not specifiy 'ids' all the annotations for 'input_ids' are deleted
* However you need to specify at least one value for 'input_ids'
* i.e. this API does not support deleting all annotations
*
*
* repeated string input_ids = 3;
* @param index The index of the element to return.
* @return The inputIds at the given index.
*/
java.lang.String getInputIds(int index);
/**
*
* Delete annotations for these Input IDs
* Note that 'ids' are optional but if the are provided the number and order in
* 'ids' and 'input_ids' should match
* If you do not specifiy 'ids' all the annotations for 'input_ids' are deleted
* However you need to specify at least one value for 'input_ids'
* i.e. this API does not support deleting all annotations
*
*
* repeated string input_ids = 3;
* @param index The index of the value to return.
* @return The bytes of the inputIds at the given index.
*/
com.google.protobuf.ByteString
getInputIdsBytes(int index);
}