org.finos.tracdap.api.DownloadResponseOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tracdap/api/data.proto
// Protobuf Java Version: 3.25.3
package org.finos.tracdap.api;
public interface DownloadResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:tracdap.api.DownloadResponse)
com.google.protobuf.MessageOrBuilder {
/**
* optional string contentType = 1;
* @return Whether the contentType field is set.
*/
boolean hasContentType();
/**
* optional string contentType = 1;
* @return The contentType.
*/
java.lang.String getContentType();
/**
* optional string contentType = 1;
* @return The bytes for contentType.
*/
com.google.protobuf.ByteString
getContentTypeBytes();
/**
* optional uint64 contentLength = 2;
* @return Whether the contentLength field is set.
*/
boolean hasContentLength();
/**
* optional uint64 contentLength = 2;
* @return The contentLength.
*/
long getContentLength();
/**
* bytes content = 1000;
* @return The content.
*/
com.google.protobuf.ByteString getContent();
}