All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clarifai.grpc.api.OutputOrBuilder Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: proto/clarifai/api/resources.proto

package com.clarifai.grpc.api;

public interface OutputOrBuilder extends
    // @@protoc_insertion_point(interface_extends:clarifai.api.Output)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * One of these outputs per Input
   * 
* * string id = 1; * @return The id. */ java.lang.String getId(); /** *
   * One of these outputs per Input
   * 
* * string id = 1; * @return The bytes for id. */ com.google.protobuf.ByteString getIdBytes(); /** * .clarifai.api.status.Status status = 2; * @return Whether the status field is set. */ boolean hasStatus(); /** * .clarifai.api.status.Status status = 2; * @return The status. */ com.clarifai.grpc.api.status.Status getStatus(); /** * .clarifai.api.status.Status status = 2; */ com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder(); /** *
   * When the object was created. We follow the XXXX timestamp
   * format. We use https://www.ietf.org/rfc/rfc3339.txt format:
   * "2006-01-02T15:04:05.999999Z" so you can expect results like
   * the following from the API:
   * "2017-04-11T21:50:50.223962Z"
   * 
* * .google.protobuf.Timestamp created_at = 3; * @return Whether the createdAt field is set. */ boolean hasCreatedAt(); /** *
   * When the object was created. We follow the XXXX timestamp
   * format. We use https://www.ietf.org/rfc/rfc3339.txt format:
   * "2006-01-02T15:04:05.999999Z" so you can expect results like
   * the following from the API:
   * "2017-04-11T21:50:50.223962Z"
   * 
* * .google.protobuf.Timestamp created_at = 3; * @return The createdAt. */ com.google.protobuf.Timestamp getCreatedAt(); /** *
   * When the object was created. We follow the XXXX timestamp
   * format. We use https://www.ietf.org/rfc/rfc3339.txt format:
   * "2006-01-02T15:04:05.999999Z" so you can expect results like
   * the following from the API:
   * "2017-04-11T21:50:50.223962Z"
   * 
* * .google.protobuf.Timestamp created_at = 3; */ com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder(); /** *
   * The model that created this Output.
   * 
* * .clarifai.api.Model model = 4; * @return Whether the model field is set. */ boolean hasModel(); /** *
   * The model that created this Output.
   * 
* * .clarifai.api.Model model = 4; * @return The model. */ com.clarifai.grpc.api.Model getModel(); /** *
   * The model that created this Output.
   * 
* * .clarifai.api.Model model = 4; */ com.clarifai.grpc.api.ModelOrBuilder getModelOrBuilder(); /** *
   * The input that was passed to the model to create this Output. For example if we have an image
   * model then it will take as input here an Input object with Image filled in.
   * 
* * .clarifai.api.Input input = 5; * @return Whether the input field is set. */ boolean hasInput(); /** *
   * The input that was passed to the model to create this Output. For example if we have an image
   * model then it will take as input here an Input object with Image filled in.
   * 
* * .clarifai.api.Input input = 5; * @return The input. */ com.clarifai.grpc.api.Input getInput(); /** *
   * The input that was passed to the model to create this Output. For example if we have an image
   * model then it will take as input here an Input object with Image filled in.
   * 
* * .clarifai.api.Input input = 5; */ com.clarifai.grpc.api.InputOrBuilder getInputOrBuilder(); /** *
   * The output data for this Output. For example if we have a concept model then the predicted
   * concepts will appear here.
   * 
* * .clarifai.api.Data data = 6; * @return Whether the data field is set. */ boolean hasData(); /** *
   * The output data for this Output. For example if we have a concept model then the predicted
   * concepts will appear here.
   * 
* * .clarifai.api.Data data = 6; * @return The data. */ com.clarifai.grpc.api.Data getData(); /** *
   * The output data for this Output. For example if we have a concept model then the predicted
   * concepts will appear here.
   * 
* * .clarifai.api.Data data = 6; */ com.clarifai.grpc.api.DataOrBuilder getDataOrBuilder(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy