com.clarifai.grpc.api.DatasetInputOrBuilder 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 DatasetInputOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.DatasetInput)
com.google.protobuf.MessageOrBuilder {
/**
*
* When the input was added to the dataset.
* The format is https://www.ietf.org/rfc/rfc3339.txt.
* Example: "2006-01-02T15:04:05.999999Z".
*
*
* .google.protobuf.Timestamp created_at = 1;
* @return Whether the createdAt field is set.
*/
boolean hasCreatedAt();
/**
*
* When the input was added to the dataset.
* The format is https://www.ietf.org/rfc/rfc3339.txt.
* Example: "2006-01-02T15:04:05.999999Z".
*
*
* .google.protobuf.Timestamp created_at = 1;
* @return The createdAt.
*/
com.google.protobuf.Timestamp getCreatedAt();
/**
*
* When the input was added to the dataset.
* The format is https://www.ietf.org/rfc/rfc3339.txt.
* Example: "2006-01-02T15:04:05.999999Z".
*
*
* .google.protobuf.Timestamp created_at = 1;
*/
com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder();
/**
*
* The input data.
*
*
* .clarifai.api.Input input = 2;
* @return Whether the input field is set.
*/
boolean hasInput();
/**
*
* The input data.
*
*
* .clarifai.api.Input input = 2;
* @return The input.
*/
com.clarifai.grpc.api.Input getInput();
/**
*
* The input data.
*
*
* .clarifai.api.Input input = 2;
*/
com.clarifai.grpc.api.InputOrBuilder getInputOrBuilder();
}