com.clarifai.grpc.api.PostConceptsSearchesRequestOrBuilder 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 PostConceptsSearchesRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PostConceptsSearchesRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Ids present in the url of the request.
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return Whether the userAppId field is set.
*/
boolean hasUserAppId();
/**
*
* Ids present in the url of the request.
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return The userAppId.
*/
com.clarifai.grpc.api.UserAppIDSet getUserAppId();
/**
*
* Ids present in the url of the request.
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder();
/**
*
* The body of the request.
*
*
* .clarifai.api.ConceptQuery concept_query = 2;
* @return Whether the conceptQuery field is set.
*/
boolean hasConceptQuery();
/**
*
* The body of the request.
*
*
* .clarifai.api.ConceptQuery concept_query = 2;
* @return The conceptQuery.
*/
com.clarifai.grpc.api.ConceptQuery getConceptQuery();
/**
*
* The body of the request.
*
*
* .clarifai.api.ConceptQuery concept_query = 2;
*/
com.clarifai.grpc.api.ConceptQueryOrBuilder getConceptQueryOrBuilder();
/**
*
* Request additional info to be retrieved for each concept in the response.
*
*
* .clarifai.api.ConceptExtraInfoRequest extra_info = 4;
* @return Whether the extraInfo field is set.
*/
boolean hasExtraInfo();
/**
*
* Request additional info to be retrieved for each concept in the response.
*
*
* .clarifai.api.ConceptExtraInfoRequest extra_info = 4;
* @return The extraInfo.
*/
com.clarifai.grpc.api.ConceptExtraInfoRequest getExtraInfo();
/**
*
* Request additional info to be retrieved for each concept in the response.
*
*
* .clarifai.api.ConceptExtraInfoRequest extra_info = 4;
*/
com.clarifai.grpc.api.ConceptExtraInfoRequestOrBuilder getExtraInfoOrBuilder();
/**
*
* Pagination parameters here since there are no url args in this
* POST request.
*
*
* .clarifai.api.Pagination pagination = 3;
* @return Whether the pagination field is set.
*/
boolean hasPagination();
/**
*
* Pagination parameters here since there are no url args in this
* POST request.
*
*
* .clarifai.api.Pagination pagination = 3;
* @return The pagination.
*/
com.clarifai.grpc.api.Pagination getPagination();
/**
*
* Pagination parameters here since there are no url args in this
* POST request.
*
*
* .clarifai.api.Pagination pagination = 3;
*/
com.clarifai.grpc.api.PaginationOrBuilder getPaginationOrBuilder();
}