com.clarifai.grpc.api.PostModelsSearchesRequestOrBuilder 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 PostModelsSearchesRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PostModelsSearchesRequest)
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.ModelQuery model_query = 2;
* @return Whether the modelQuery field is set.
*/
boolean hasModelQuery();
/**
*
* The body of the request.
*
*
* .clarifai.api.ModelQuery model_query = 2;
* @return The modelQuery.
*/
com.clarifai.grpc.api.ModelQuery getModelQuery();
/**
*
* The body of the request.
*
*
* .clarifai.api.ModelQuery model_query = 2;
*/
com.clarifai.grpc.api.ModelQueryOrBuilder getModelQueryOrBuilder();
/**
*
* 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();
}