main.java.com.streamlayer.files.UploadResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/files/files.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.files;
public interface UploadResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.files.UploadResponse)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string name = 1 [json_name = "name"];
* @return The name.
*/
java.lang.String getName();
/**
* string name = 1 [json_name = "name"];
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* string owner = 2 [json_name = "owner"];
* @return The owner.
*/
java.lang.String getOwner();
/**
* string owner = 2 [json_name = "owner"];
* @return The bytes for owner.
*/
com.google.protobuf.ByteString
getOwnerBytes();
/**
* string upload_id = 3 [json_name = "uploadId"];
* @return The uploadId.
*/
java.lang.String getUploadId();
/**
* string upload_id = 3 [json_name = "uploadId"];
* @return The bytes for uploadId.
*/
com.google.protobuf.ByteString
getUploadIdBytes();
/**
* string status = 4 [json_name = "status"];
* @return The status.
*/
java.lang.String getStatus();
/**
* string status = 4 [json_name = "status"];
* @return The bytes for status.
*/
com.google.protobuf.ByteString
getStatusBytes();
/**
* sint32 parts = 7 [json_name = "parts"];
* @return The parts.
*/
int getParts();
/**
* bool public = 5 [json_name = "public"];
* @return The public.
*/
boolean getPublic();
/**
* repeated .streamlayer.files.FileUpload files = 6 [json_name = "files"];
*/
java.util.List
getFilesList();
/**
* repeated .streamlayer.files.FileUpload files = 6 [json_name = "files"];
*/
com.streamlayer.files.FileUpload getFiles(int index);
/**
* repeated .streamlayer.files.FileUpload files = 6 [json_name = "files"];
*/
int getFilesCount();
}