main.java.com.streamlayer.files.DownloadResponseOrBuilder 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 DownloadResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.files.DownloadResponse)
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();
/**
* repeated .streamlayer.files.DownloadResponse.DownloadedFile files = 3 [json_name = "files"];
*/
java.util.List
getFilesList();
/**
* repeated .streamlayer.files.DownloadResponse.DownloadedFile files = 3 [json_name = "files"];
*/
com.streamlayer.files.DownloadResponse.DownloadedFile getFiles(int index);
/**
* repeated .streamlayer.files.DownloadResponse.DownloadedFile files = 3 [json_name = "files"];
*/
int getFilesCount();
/**
* repeated string urls = 4 [json_name = "urls"];
* @return A list containing the urls.
*/
java.util.List
getUrlsList();
/**
* repeated string urls = 4 [json_name = "urls"];
* @return The count of urls.
*/
int getUrlsCount();
/**
* repeated string urls = 4 [json_name = "urls"];
* @param index The index of the element to return.
* @return The urls at the given index.
*/
java.lang.String getUrls(int index);
/**
* repeated string urls = 4 [json_name = "urls"];
* @param index The index of the element to return.
* @return The urls at the given index.
*/
com.google.protobuf.ByteString
getUrlsBytes(int index);
}