com.clarifai.grpc.api.ListModelVersionInputExamplesRequestOrBuilder 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 ListModelVersionInputExamplesRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ListModelVersionInputExamplesRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* authorization field (contains app/user id info)
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return Whether the userAppId field is set.
*/
boolean hasUserAppId();
/**
*
* authorization field (contains app/user id info)
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return The userAppId.
*/
com.clarifai.grpc.api.UserAppIDSet getUserAppId();
/**
*
* authorization field (contains app/user id info)
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder();
/**
*
* id of model the example belongs to
*
*
* string model_id = 2;
* @return The modelId.
*/
java.lang.String getModelId();
/**
*
* id of model the example belongs to
*
*
* string model_id = 2;
* @return The bytes for modelId.
*/
com.google.protobuf.ByteString
getModelIdBytes();
/**
*
* specific version the example belongs to
*
*
* string model_version_id = 3;
* @return The modelVersionId.
*/
java.lang.String getModelVersionId();
/**
*
* specific version the example belongs to
*
*
* string model_version_id = 3;
* @return The bytes for modelVersionId.
*/
com.google.protobuf.ByteString
getModelVersionIdBytes();
/**
*
* Optional, defaults to 1.
*
*
* uint32 page = 4;
* @return The page.
*/
int getPage();
/**
*
* Optional, defaults to 128 references per page.
*
*
* uint32 per_page = 5;
* @return The perPage.
*/
int getPerPage();
}