com.zepben.protobuf.metadata.DataSourceOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evolve-grpc Show documentation
Show all versions of evolve-grpc Show documentation
Protobuf and gRPC definitions for the evolve platform
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: zepben/protobuf/metadata/metadata-data.proto
package com.zepben.protobuf.metadata;
public interface DataSourceOrBuilder extends
// @@protoc_insertion_point(interface_extends:zepben.protobuf.metadata.DataSource)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The source of this data, e.g GIS, DMS
*
*
* string source = 1;
* @return The source.
*/
java.lang.String getSource();
/**
*
**
* The source of this data, e.g GIS, DMS
*
*
* string source = 1;
* @return The bytes for source.
*/
com.google.protobuf.ByteString
getSourceBytes();
/**
*
**
* The version of this data.
*
*
* string version = 2;
* @return The version.
*/
java.lang.String getVersion();
/**
*
**
* The version of this data.
*
*
* string version = 2;
* @return The bytes for version.
*/
com.google.protobuf.ByteString
getVersionBytes();
/**
*
**
* The timestamp for when this data source was generated (UTC).
*
*
* .google.protobuf.Timestamp timestamp = 3;
* @return Whether the timestamp field is set.
*/
boolean hasTimestamp();
/**
*
**
* The timestamp for when this data source was generated (UTC).
*
*
* .google.protobuf.Timestamp timestamp = 3;
* @return The timestamp.
*/
com.google.protobuf.Timestamp getTimestamp();
/**
*
**
* The timestamp for when this data source was generated (UTC).
*
*
* .google.protobuf.Timestamp timestamp = 3;
*/
com.google.protobuf.TimestampOrBuilder getTimestampOrBuilder();
}