main.java.com.streamlayer.social.TweetOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/social/twitter.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.social;
public interface TweetOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.social.Tweet)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
* unique id
*
*
* string id = 1 [json_name = "id"];
* @return The id.
*/
java.lang.String getId();
/**
*
* unique id
*
*
* string id = 1 [json_name = "id"];
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
/**
*
* when it has been posted
*
*
* string date = 2 [json_name = "date"];
* @return The date.
*/
java.lang.String getDate();
/**
*
* when it has been posted
*
*
* string date = 2 [json_name = "date"];
* @return The bytes for date.
*/
com.google.protobuf.ByteString
getDateBytes();
/**
*
* tweet content
*
*
* string text = 3 [json_name = "text"];
* @return The text.
*/
java.lang.String getText();
/**
*
* tweet content
*
*
* string text = 3 [json_name = "text"];
* @return The bytes for text.
*/
com.google.protobuf.ByteString
getTextBytes();
/**
*
* tweet metadata
*
*
* .streamlayer.social.TweetMetadata meta = 4 [json_name = "meta"];
* @return Whether the meta field is set.
*/
boolean hasMeta();
/**
*
* tweet metadata
*
*
* .streamlayer.social.TweetMetadata meta = 4 [json_name = "meta"];
* @return The meta.
*/
com.streamlayer.social.TweetMetadata getMeta();
}