com.google.cloud.dialogflow.v2.UpdateIntentRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/v2/intent.proto
package com.google.cloud.dialogflow.v2;
public interface UpdateIntentRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.UpdateIntentRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Required. The intent to update.
* Format: `projects/<Project ID>/agent/intents/<Intent ID>`.
*
*
* .google.cloud.dialogflow.v2.Intent intent = 1;
*/
boolean hasIntent();
/**
*
* Required. The intent to update.
* Format: `projects/<Project ID>/agent/intents/<Intent ID>`.
*
*
* .google.cloud.dialogflow.v2.Intent intent = 1;
*/
com.google.cloud.dialogflow.v2.Intent getIntent();
/**
*
* Required. The intent to update.
* Format: `projects/<Project ID>/agent/intents/<Intent ID>`.
*
*
* .google.cloud.dialogflow.v2.Intent intent = 1;
*/
com.google.cloud.dialogflow.v2.IntentOrBuilder getIntentOrBuilder();
/**
*
* Optional. The language of training phrases, parameters and rich messages
* defined in `intent`. If not specified, the agent's default language is
* used. [More than a dozen
* languages](https://dialogflow.com/docs/reference/language) are supported.
* Note: languages must be enabled in the agent, before they can be used.
*
*
* string language_code = 2;
*/
java.lang.String getLanguageCode();
/**
*
* Optional. The language of training phrases, parameters and rich messages
* defined in `intent`. If not specified, the agent's default language is
* used. [More than a dozen
* languages](https://dialogflow.com/docs/reference/language) are supported.
* Note: languages must be enabled in the agent, before they can be used.
*
*
* string language_code = 2;
*/
com.google.protobuf.ByteString
getLanguageCodeBytes();
/**
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 3;
*/
boolean hasUpdateMask();
/**
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 3;
*/
com.google.protobuf.FieldMask getUpdateMask();
/**
*
* Optional. The mask to control which fields get updated.
*
*
* .google.protobuf.FieldMask update_mask = 3;
*/
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder();
/**
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 4;
*/
int getIntentViewValue();
/**
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 4;
*/
com.google.cloud.dialogflow.v2.IntentView getIntentView();
}