main.java.com.streamlayer.interactive.feed.TweetHistoryOrBuilder 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/interactive/feed/interactive.feed.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.interactive.feed;
public interface TweetHistoryOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.interactive.feed.TweetHistory)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string tweet_id = 1 [json_name = "tweetId"];
* @return The tweetId.
*/
java.lang.String getTweetId();
/**
* string tweet_id = 1 [json_name = "tweetId"];
* @return The bytes for tweetId.
*/
com.google.protobuf.ByteString
getTweetIdBytes();
/**
* string title = 2 [json_name = "title"];
* @return The title.
*/
java.lang.String getTitle();
/**
* string title = 2 [json_name = "title"];
* @return The bytes for title.
*/
com.google.protobuf.ByteString
getTitleBytes();
/**
* string image = 3 [json_name = "image"];
* @return The image.
*/
java.lang.String getImage();
/**
* string image = 3 [json_name = "image"];
* @return The bytes for image.
*/
com.google.protobuf.ByteString
getImageBytes();
/**
* string body = 4 [json_name = "body"];
* @return The body.
*/
java.lang.String getBody();
/**
* string body = 4 [json_name = "body"];
* @return The bytes for body.
*/
com.google.protobuf.ByteString
getBodyBytes();
/**
* string account = 5 [json_name = "account"];
* @return The account.
*/
java.lang.String getAccount();
/**
* string account = 5 [json_name = "account"];
* @return The bytes for account.
*/
com.google.protobuf.ByteString
getAccountBytes();
/**
* bool account_verified = 6 [json_name = "accountVerified"];
* @return The accountVerified.
*/
boolean getAccountVerified();
/**
* .streamlayer.social.Tweet tweet = 7 [json_name = "tweet"];
* @return Whether the tweet field is set.
*/
boolean hasTweet();
/**
* .streamlayer.social.Tweet tweet = 7 [json_name = "tweet"];
* @return The tweet.
*/
com.streamlayer.social.Tweet getTweet();
}