Package com.streamlayer.social
Interface GetTweetResponse.GetTweetResponseDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
GetTweetResponse.GetTweetResponseData,GetTweetResponse.GetTweetResponseData.Builder
- Enclosing class:
- GetTweetResponse
public static interface GetTweetResponse.GetTweetResponseDataOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TweetgetAttributes()tweet propertiesjava.lang.StringgetId()tweet idcom.google.protobuf.ByteStringgetIdBytes()tweet idjava.lang.StringgetType()type is always "tweet"com.google.protobuf.ByteStringgetTypeBytes()type is always "tweet"booleanhasAttributes()tweet properties
-
-
-
Method Detail
-
getId
java.lang.String getId()
tweet id
string id = 1 [json_name = "id"];- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
tweet id
string id = 1 [json_name = "id"];- Returns:
- The bytes for id.
-
getType
java.lang.String getType()
type is always "tweet"
string type = 2 [json_name = "type"];- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()
type is always "tweet"
string type = 2 [json_name = "type"];- Returns:
- The bytes for type.
-
hasAttributes
boolean hasAttributes()
tweet properties
.streamlayer.social.Tweet attributes = 3 [json_name = "attributes"];- Returns:
- Whether the attributes field is set.
-
getAttributes
Tweet getAttributes()
tweet properties
.streamlayer.social.Tweet attributes = 3 [json_name = "attributes"];- Returns:
- The attributes.
-
-