Interface DialogflowInteractionDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DialogflowInteractionData
,DialogflowInteractionData.Builder
public interface DialogflowInteractionDataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description float
getConfidence()
The confidence of the match ranging from 0.0 (completely uncertain) to 1.0 (completely certain).String
getDialogflowIntentId()
The Dialogflow intent resource path.com.google.protobuf.ByteString
getDialogflowIntentIdBytes()
The Dialogflow intent resource path.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDialogflowIntentId
String getDialogflowIntentId()
The Dialogflow intent resource path. Format: projects/{project}/agent/{agent}/intents/{intent}
string dialogflow_intent_id = 1;
- Returns:
- The dialogflowIntentId.
-
getDialogflowIntentIdBytes
com.google.protobuf.ByteString getDialogflowIntentIdBytes()
The Dialogflow intent resource path. Format: projects/{project}/agent/{agent}/intents/{intent}
string dialogflow_intent_id = 1;
- Returns:
- The bytes for dialogflowIntentId.
-
getConfidence
float getConfidence()
The confidence of the match ranging from 0.0 (completely uncertain) to 1.0 (completely certain).
float confidence = 2;
- Returns:
- The confidence.
-
-