com.clarifai.grpc.api.PutUploadContentPartsRequestOrBuilder 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 PutUploadContentPartsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PutUploadContentPartsRequest)
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();
/**
* string upload_id = 2;
* @return The uploadId.
*/
java.lang.String getUploadId();
/**
* string upload_id = 2;
* @return The bytes for uploadId.
*/
com.google.protobuf.ByteString
getUploadIdBytes();
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
java.util.List
getContentPartsList();
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
com.clarifai.grpc.api.UploadContentPart getContentParts(int index);
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
int getContentPartsCount();
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
java.util.List extends com.clarifai.grpc.api.UploadContentPartOrBuilder>
getContentPartsOrBuilderList();
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
com.clarifai.grpc.api.UploadContentPartOrBuilder getContentPartsOrBuilder(
int index);
}