Interface Intent.Message.RbmSuggestedReplyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Intent.Message.RbmSuggestedReply
,Intent.Message.RbmSuggestedReply.Builder
- Enclosing class:
- Intent.Message
public static interface Intent.Message.RbmSuggestedReplyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getPostbackData()
Opaque payload that the Dialogflow receives in a user event when the user taps the suggested reply.com.google.protobuf.ByteString
getPostbackDataBytes()
Opaque payload that the Dialogflow receives in a user event when the user taps the suggested reply.String
getText()
Suggested reply text.com.google.protobuf.ByteString
getTextBytes()
Suggested reply text.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getText
String getText()
Suggested reply text.
string text = 1;
- Returns:
- The text.
-
getTextBytes
com.google.protobuf.ByteString getTextBytes()
Suggested reply text.
string text = 1;
- Returns:
- The bytes for text.
-
getPostbackData
String getPostbackData()
Opaque payload that the Dialogflow receives in a user event when the user taps the suggested reply. This data will be also forwarded to webhook to allow performing custom business logic.
string postback_data = 2;
- Returns:
- The postbackData.
-
getPostbackDataBytes
com.google.protobuf.ByteString getPostbackDataBytes()
Opaque payload that the Dialogflow receives in a user event when the user taps the suggested reply. This data will be also forwarded to webhook to allow performing custom business logic.
string postback_data = 2;
- Returns:
- The bytes for postbackData.
-
-