Package com.google.cloud.dialogflow.v2
Interface CreateConversationModelRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateConversationModelRequest,CreateConversationModelRequest.Builder
public interface CreateConversationModelRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConversationModelgetConversationModel()Required.ConversationModelOrBuildergetConversationModelOrBuilder()Required.StringgetParent()The project to create conversation model for.com.google.protobuf.ByteStringgetParentBytes()The project to create conversation model for.booleanhasConversationModel()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
The project to create conversation model for. Format: `projects/<Project ID>`
string parent = 1;- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
The project to create conversation model for. Format: `projects/<Project ID>`
string parent = 1;- Returns:
- The bytes for parent.
-
hasConversationModel
boolean hasConversationModel()
Required. The conversation model to create.
.google.cloud.dialogflow.v2.ConversationModel conversation_model = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the conversationModel field is set.
-
getConversationModel
ConversationModel getConversationModel()
Required. The conversation model to create.
.google.cloud.dialogflow.v2.ConversationModel conversation_model = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The conversationModel.
-
getConversationModelOrBuilder
ConversationModelOrBuilder getConversationModelOrBuilder()
Required. The conversation model to create.
.google.cloud.dialogflow.v2.ConversationModel conversation_model = 2 [(.google.api.field_behavior) = REQUIRED];
-
-