main.java.com.streamlayer.files.DownloadRequestOrBuilder 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 DownloadRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.files.DownloadRequest)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string upload_id = 1 [json_name = "uploadId"];
* @return The uploadId.
*/
java.lang.String getUploadId();
/**
* string upload_id = 1 [json_name = "uploadId"];
* @return The bytes for uploadId.
*/
com.google.protobuf.ByteString
getUploadIdBytes();
/**
* string username = 2 [json_name = "username"];
* @return The username.
*/
java.lang.String getUsername();
/**
* string username = 2 [json_name = "username"];
* @return The bytes for username.
*/
com.google.protobuf.ByteString
getUsernameBytes();
/**
* bool rename = 3 [json_name = "rename"];
* @return The rename.
*/
boolean getRename();
/**
* repeated string types = 4 [json_name = "types"];
* @return A list containing the types.
*/
java.util.List
getTypesList();
/**
* repeated string types = 4 [json_name = "types"];
* @return The count of types.
*/
int getTypesCount();
/**
* repeated string types = 4 [json_name = "types"];
* @param index The index of the element to return.
* @return The types at the given index.
*/
java.lang.String getTypes(int index);
/**
* repeated string types = 4 [json_name = "types"];
* @param index The index of the element to return.
* @return The types at the given index.
*/
com.google.protobuf.ByteString
getTypesBytes(int index);
}