com.clarifai.grpc.api.ListInputsRequestOrBuilder 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 ListInputsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ListInputsRequest)
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();
/**
*
* (optional URL parameter) The page number. Pagination is used to split the results into chunks.
* Defaults to 1.
*
*
* uint32 page = 2;
* @return The page.
*/
int getPage();
/**
*
* (optional URL parameter) The number of results that will be contained in each page. Defaults
* to 128.
*
*
* uint32 per_page = 3;
* @return The perPage.
*/
int getPerPage();
/**
*
* Set status to filter by status
*
*
* .clarifai.api.status.Status status = 5;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
*
* Set status to filter by status
*
*
* .clarifai.api.status.Status status = 5;
* @return The status.
*/
com.clarifai.grpc.api.status.Status getStatus();
/**
*
* Set status to filter by status
*
*
* .clarifai.api.status.Status status = 5;
*/
com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder();
/**
* repeated string ids = 4;
* @return A list containing the ids.
*/
java.util.List
getIdsList();
/**
* repeated string ids = 4;
* @return The count of ids.
*/
int getIdsCount();
/**
* repeated string ids = 4;
* @param index The index of the element to return.
* @return The ids at the given index.
*/
java.lang.String getIds(int index);
/**
* repeated string ids = 4;
* @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);
}