com.google.cloud.dialogflow.v2.GetIntentRequestOrBuilder 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 GetIntentRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.GetIntentRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Required. The name of the intent.
* Format: `projects/<Project ID>/agent/intents/<Intent ID>`.
*
*
* string name = 1;
*/
java.lang.String getName();
/**
*
* Required. The name of the intent.
* Format: `projects/<Project ID>/agent/intents/<Intent ID>`.
*
*
* string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* Optional. The language to retrieve training phrases, parameters and rich
* messages for. 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 to retrieve training phrases, parameters and rich
* messages for. 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 resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 3;
*/
int getIntentViewValue();
/**
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 3;
*/
com.google.cloud.dialogflow.v2.IntentView getIntentView();
}