Package com.streamlayer.social
Interface SubscriptionRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
SubscriptionRequest,SubscriptionRequest.Builder
public interface SubscriptionRequestOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAccount(int index)Array of twitter usernames to fetch feed forcom.google.protobuf.ByteStringgetAccountBytes(int index)Array of twitter usernames to fetch feed forintgetAccountCount()Array of twitter usernames to fetch feed forjava.util.List<java.lang.String>getAccountList()Array of twitter usernames to fetch feed for
-
-
-
Method Detail
-
getAccountList
java.util.List<java.lang.String> getAccountList()
Array of twitter usernames to fetch feed for
repeated string account = 1 [json_name = "account"];- Returns:
- A list containing the account.
-
getAccountCount
int getAccountCount()
Array of twitter usernames to fetch feed for
repeated string account = 1 [json_name = "account"];- Returns:
- The count of account.
-
getAccount
java.lang.String getAccount(int index)
Array of twitter usernames to fetch feed for
repeated string account = 1 [json_name = "account"];- Parameters:
index- The index of the element to return.- Returns:
- The account at the given index.
-
getAccountBytes
com.google.protobuf.ByteString getAccountBytes(int index)
Array of twitter usernames to fetch feed for
repeated string account = 1 [json_name = "account"];- Parameters:
index- The index of the element to return.- Returns:
- The account at the given index.
-
-