Interface Intent.Message.QuickRepliesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Intent.Message.QuickReplies
,Intent.Message.QuickReplies.Builder
- Enclosing class:
- Intent.Message
public static interface Intent.Message.QuickRepliesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getQuickReplies(int index)
Optional.com.google.protobuf.ByteString
getQuickRepliesBytes(int index)
Optional.int
getQuickRepliesCount()
Optional.List<String>
getQuickRepliesList()
Optional.String
getTitle()
Optional.com.google.protobuf.ByteString
getTitleBytes()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTitle
String getTitle()
Optional. The title of the collection of quick replies.
string title = 1;
- Returns:
- The title.
-
getTitleBytes
com.google.protobuf.ByteString getTitleBytes()
Optional. The title of the collection of quick replies.
string title = 1;
- Returns:
- The bytes for title.
-
getQuickRepliesList
List<String> getQuickRepliesList()
Optional. The collection of quick replies.
repeated string quick_replies = 2;
- Returns:
- A list containing the quickReplies.
-
getQuickRepliesCount
int getQuickRepliesCount()
Optional. The collection of quick replies.
repeated string quick_replies = 2;
- Returns:
- The count of quickReplies.
-
getQuickReplies
String getQuickReplies(int index)
Optional. The collection of quick replies.
repeated string quick_replies = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The quickReplies at the given index.
-
getQuickRepliesBytes
com.google.protobuf.ByteString getQuickRepliesBytes(int index)
Optional. The collection of quick replies.
repeated string quick_replies = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the quickReplies at the given index.
-
-