Interface IntentInputOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IntentInput
,IntentInput.Builder
public interface IntentInputOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getIntent()
Required.com.google.protobuf.ByteString
getIntentBytes()
Required.String
getLanguageCode()
Required.com.google.protobuf.ByteString
getLanguageCodeBytes()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIntent
String getIntent()
Required. The unique identifier of the intent in V3 agent. Format: `projects/<Project ID>/locations/<Location ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>`.
string intent = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The intent.
-
getIntentBytes
com.google.protobuf.ByteString getIntentBytes()
Required. The unique identifier of the intent in V3 agent. Format: `projects/<Project ID>/locations/<Location ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>`.
string intent = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for intent.
-
getLanguageCode
String getLanguageCode()
Required. The language of this conversational query. See [Language Support](https://cloud.google.com/dialogflow/docs/reference/language) for a list of the currently supported language codes.
string language_code = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The languageCode.
-
getLanguageCodeBytes
com.google.protobuf.ByteString getLanguageCodeBytes()
Required. The language of this conversational query. See [Language Support](https://cloud.google.com/dialogflow/docs/reference/language) for a list of the currently supported language codes.
string language_code = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for languageCode.
-
-