com.clarifai.grpc.api.PostSearchesRequestOrBuilder 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 PostSearchesRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PostSearchesRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The user_id and app_id to query from.
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return Whether the userAppId field is set.
*/
boolean hasUserAppId();
/**
*
* The user_id and app_id to query from.
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return The userAppId.
*/
com.clarifai.grpc.api.UserAppIDSet getUserAppId();
/**
*
* The user_id and app_id to query from.
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder();
/**
*
* The query; this specifies how the data to be searched
* this will be replaced by "Searches"
*
*
* .clarifai.api.Query query = 2 [deprecated = true];
* @deprecated clarifai.api.PostSearchesRequest.query is deprecated.
* See proto/clarifai/api/service.proto;l=6063
* @return Whether the query field is set.
*/
@java.lang.Deprecated boolean hasQuery();
/**
*
* The query; this specifies how the data to be searched
* this will be replaced by "Searches"
*
*
* .clarifai.api.Query query = 2 [deprecated = true];
* @deprecated clarifai.api.PostSearchesRequest.query is deprecated.
* See proto/clarifai/api/service.proto;l=6063
* @return The query.
*/
@java.lang.Deprecated com.clarifai.grpc.api.Query getQuery();
/**
*
* The query; this specifies how the data to be searched
* this will be replaced by "Searches"
*
*
* .clarifai.api.Query query = 2 [deprecated = true];
*/
@java.lang.Deprecated com.clarifai.grpc.api.QueryOrBuilder getQueryOrBuilder();
/**
*
* The searched to be executed or saved
* Eventually the request level fields will be deprecated in favor of this object
*
*
* repeated .clarifai.api.Search searches = 3;
*/
java.util.List
getSearchesList();
/**
*
* The searched to be executed or saved
* Eventually the request level fields will be deprecated in favor of this object
*
*
* repeated .clarifai.api.Search searches = 3;
*/
com.clarifai.grpc.api.Search getSearches(int index);
/**
*
* The searched to be executed or saved
* Eventually the request level fields will be deprecated in favor of this object
*
*
* repeated .clarifai.api.Search searches = 3;
*/
int getSearchesCount();
/**
*
* The searched to be executed or saved
* Eventually the request level fields will be deprecated in favor of this object
*
*
* repeated .clarifai.api.Search searches = 3;
*/
java.util.List extends com.clarifai.grpc.api.SearchOrBuilder>
getSearchesOrBuilderList();
/**
*
* The searched to be executed or saved
* Eventually the request level fields will be deprecated in favor of this object
*
*
* repeated .clarifai.api.Search searches = 3;
*/
com.clarifai.grpc.api.SearchOrBuilder getSearchesOrBuilder(
int index);
/**
*
* Pagination information to paginate through search result Hits.
*
*
* .clarifai.api.Pagination pagination = 4;
* @return Whether the pagination field is set.
*/
boolean hasPagination();
/**
*
* Pagination information to paginate through search result Hits.
*
*
* .clarifai.api.Pagination pagination = 4;
* @return The pagination.
*/
com.clarifai.grpc.api.Pagination getPagination();
/**
*
* Pagination information to paginate through search result Hits.
*
*
* .clarifai.api.Pagination pagination = 4;
*/
com.clarifai.grpc.api.PaginationOrBuilder getPaginationOrBuilder();
}