org.finos.tracdap.api.DownloadResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracdap-api-services Show documentation
Show all versions of tracdap-api-services Show documentation
TRAC D.A.P. platform API, contains service API definitions for the TRAC platform services
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: tracdap/api/data.proto
// Protobuf Java Version: 4.28.2
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();
}