com.google.cloud.dialogflow.v2.EventInputOrBuilder 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 EventInputOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.EventInput)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The unique identifier of the event.
*
*
* string name = 1;
*/
java.lang.String getName();
/**
*
*
*
* Required. The unique identifier of the event.
*
*
* string name = 1;
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Optional. The collection of parameters associated with the event.
*
*
* .google.protobuf.Struct parameters = 2;
*/
boolean hasParameters();
/**
*
*
*
* Optional. The collection of parameters associated with the event.
*
*
* .google.protobuf.Struct parameters = 2;
*/
com.google.protobuf.Struct getParameters();
/**
*
*
*
* Optional. The collection of parameters associated with the event.
*
*
* .google.protobuf.Struct parameters = 2;
*/
com.google.protobuf.StructOrBuilder getParametersOrBuilder();
/**
*
*
*
* Required. The language of this 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 = 3;
*/
java.lang.String getLanguageCode();
/**
*
*
*
* Required. The language of this 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 = 3;
*/
com.google.protobuf.ByteString getLanguageCodeBytes();
}