com.clarifai.grpc.api.ModelVersionExportOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface ModelVersionExportOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ModelVersionExport)
com.google.protobuf.MessageOrBuilder {
/**
*
* status is the current status of the dataset version export.
*
*
* .clarifai.api.status.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
*
* status is the current status of the dataset version export.
*
*
* .clarifai.api.status.Status status = 1;
* @return The status.
*/
com.clarifai.grpc.api.status.Status getStatus();
/**
*
* status is the current status of the dataset version export.
*
*
* .clarifai.api.status.Status status = 1;
*/
com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder();
/**
*
* url is the URL from where the model version export can be downloaded.
*
*
* string url = 2;
* @return The url.
*/
java.lang.String getUrl();
/**
*
* url is the URL from where the model version export can be downloaded.
*
*
* string url = 2;
* @return The bytes for url.
*/
com.google.protobuf.ByteString
getUrlBytes();
/**
*
* size of model file
*
*
* int64 size = 3;
* @return The size.
*/
long getSize();
}