com.google.cloud.dialogflow.v2.TextInputOrBuilder 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/session.proto
package com.google.cloud.dialogflow.v2;
public interface TextInputOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.TextInput)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The UTF-8 encoded natural language text to be processed.
* Text length must not exceed 256 characters.
*
*
* string text = 1;
*/
java.lang.String getText();
/**
*
*
*
* Required. The UTF-8 encoded natural language text to be processed.
* Text length must not exceed 256 characters.
*
*
* string text = 1;
*/
com.google.protobuf.ByteString getTextBytes();
/**
*
*
*
* Required. The language of this conversational query. See [Language
* Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/language)
* for a list of the currently supported language codes. Note that queries in
* the same session do not necessarily need to specify the same language.
*
*
* string language_code = 2;
*/
java.lang.String getLanguageCode();
/**
*
*
*
* Required. The language of this conversational query. See [Language
* Support](https://cloud.google.com/dialogflow-enterprise/docs/reference/language)
* for a list of the currently supported language codes. Note that queries in
* the same session do not necessarily need to specify the same language.
*
*
* string language_code = 2;
*/
com.google.protobuf.ByteString getLanguageCodeBytes();
}