com.clarifai.grpc.api.TrackOrBuilder 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 TrackOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.Track)
com.google.protobuf.MessageOrBuilder {
/**
*
* track id
*
*
* string id = 1;
* @return The id.
*/
java.lang.String getId();
/**
*
* track id
*
*
* string id = 1;
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
/**
*
* This is a recursive definition which can contain all the concepts,
* embeddings, etc. that are computed within this track.
*
*
* .clarifai.api.Data data = 2;
* @return Whether the data field is set.
*/
boolean hasData();
/**
*
* This is a recursive definition which can contain all the concepts,
* embeddings, etc. that are computed within this track.
*
*
* .clarifai.api.Data data = 2;
* @return The data.
*/
com.clarifai.grpc.api.Data getData();
/**
*
* This is a recursive definition which can contain all the concepts,
* embeddings, etc. that are computed within this track.
*
*
* .clarifai.api.Data data = 2;
*/
com.clarifai.grpc.api.DataOrBuilder getDataOrBuilder();
/**
* .clarifai.api.TimeInfo time_info = 4;
* @return Whether the timeInfo field is set.
*/
boolean hasTimeInfo();
/**
* .clarifai.api.TimeInfo time_info = 4;
* @return The timeInfo.
*/
com.clarifai.grpc.api.TimeInfo getTimeInfo();
/**
* .clarifai.api.TimeInfo time_info = 4;
*/
com.clarifai.grpc.api.TimeInfoOrBuilder getTimeInfoOrBuilder();
/**
* float quality = 5;
* @return The quality.
*/
float getQuality();
}