Interface SmartReplyDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SmartReplyData
,SmartReplyData.Builder
public interface SmartReplyDataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsMetadata(String key)
Map that contains metadata about the Smart Reply and the document from which it originates.double
getConfidenceScore()
The system's confidence score that this reply is a good match for this conversation, ranging from 0.0 (completely uncertain) to 1.0 (completely certain).Map<String,String>
getMetadata()
Deprecated.int
getMetadataCount()
Map that contains metadata about the Smart Reply and the document from which it originates.Map<String,String>
getMetadataMap()
Map that contains metadata about the Smart Reply and the document from which it originates.String
getMetadataOrDefault(String key, String defaultValue)
Map that contains metadata about the Smart Reply and the document from which it originates.String
getMetadataOrThrow(String key)
Map that contains metadata about the Smart Reply and the document from which it originates.String
getQueryRecord()
The name of the answer record.com.google.protobuf.ByteString
getQueryRecordBytes()
The name of the answer record.String
getReply()
The content of the reply.com.google.protobuf.ByteString
getReplyBytes()
The content of the reply.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getReply
String getReply()
The content of the reply.
string reply = 1;
- Returns:
- The reply.
-
getReplyBytes
com.google.protobuf.ByteString getReplyBytes()
The content of the reply.
string reply = 1;
- Returns:
- The bytes for reply.
-
getConfidenceScore
double getConfidenceScore()
The system's confidence score that this reply is a good match for this conversation, ranging from 0.0 (completely uncertain) to 1.0 (completely certain).
double confidence_score = 2;
- Returns:
- The confidenceScore.
-
getMetadataCount
int getMetadataCount()
Map that contains metadata about the Smart Reply and the document from which it originates.
map<string, string> metadata = 3;
-
containsMetadata
boolean containsMetadata(String key)
Map that contains metadata about the Smart Reply and the document from which it originates.
map<string, string> metadata = 3;
-
getMetadata
@Deprecated Map<String,String> getMetadata()
Deprecated.UsegetMetadataMap()
instead.
-
getMetadataMap
Map<String,String> getMetadataMap()
Map that contains metadata about the Smart Reply and the document from which it originates.
map<string, string> metadata = 3;
-
getMetadataOrDefault
String getMetadataOrDefault(String key, String defaultValue)
Map that contains metadata about the Smart Reply and the document from which it originates.
map<string, string> metadata = 3;
-
getMetadataOrThrow
String getMetadataOrThrow(String key)
Map that contains metadata about the Smart Reply and the document from which it originates.
map<string, string> metadata = 3;
-
getQueryRecord
String getQueryRecord()
The name of the answer record. Format: projects/{project}/locations/{location}/answerRecords/{answer_record}
string query_record = 4;
- Returns:
- The queryRecord.
-
getQueryRecordBytes
com.google.protobuf.ByteString getQueryRecordBytes()
The name of the answer record. Format: projects/{project}/locations/{location}/answerRecords/{answer_record}
string query_record = 4;
- Returns:
- The bytes for queryRecord.
-
-