com.google.cloud.dialogflow.v2.QueryParametersOrBuilder 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 QueryParametersOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.QueryParameters)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Optional. The time zone of this conversational query from the
* [time zone database](https://www.iana.org/time-zones), e.g.,
* America/New_York, Europe/Paris. If not provided, the time zone specified in
* agent settings is used.
*
*
* string time_zone = 1;
*/
java.lang.String getTimeZone();
/**
*
*
*
* Optional. The time zone of this conversational query from the
* [time zone database](https://www.iana.org/time-zones), e.g.,
* America/New_York, Europe/Paris. If not provided, the time zone specified in
* agent settings is used.
*
*
* string time_zone = 1;
*/
com.google.protobuf.ByteString getTimeZoneBytes();
/**
*
*
*
* Optional. The geo location of this conversational query.
*
*
* .google.type.LatLng geo_location = 2;
*/
boolean hasGeoLocation();
/**
*
*
*
* Optional. The geo location of this conversational query.
*
*
* .google.type.LatLng geo_location = 2;
*/
com.google.type.LatLng getGeoLocation();
/**
*
*
*
* Optional. The geo location of this conversational query.
*
*
* .google.type.LatLng geo_location = 2;
*/
com.google.type.LatLngOrBuilder getGeoLocationOrBuilder();
/**
*
*
*
* Optional. The collection of contexts to be activated before this query is
* executed.
*
*
* repeated .google.cloud.dialogflow.v2.Context contexts = 3;
*/
java.util.List getContextsList();
/**
*
*
*
* Optional. The collection of contexts to be activated before this query is
* executed.
*
*
* repeated .google.cloud.dialogflow.v2.Context contexts = 3;
*/
com.google.cloud.dialogflow.v2.Context getContexts(int index);
/**
*
*
*
* Optional. The collection of contexts to be activated before this query is
* executed.
*
*
* repeated .google.cloud.dialogflow.v2.Context contexts = 3;
*/
int getContextsCount();
/**
*
*
*
* Optional. The collection of contexts to be activated before this query is
* executed.
*
*
* repeated .google.cloud.dialogflow.v2.Context contexts = 3;
*/
java.util.List extends com.google.cloud.dialogflow.v2.ContextOrBuilder>
getContextsOrBuilderList();
/**
*
*
*
* Optional. The collection of contexts to be activated before this query is
* executed.
*
*
* repeated .google.cloud.dialogflow.v2.Context contexts = 3;
*/
com.google.cloud.dialogflow.v2.ContextOrBuilder getContextsOrBuilder(int index);
/**
*
*
*
* Optional. Specifies whether to delete all contexts in the current session
* before the new ones are activated.
*
*
* bool reset_contexts = 4;
*/
boolean getResetContexts();
/**
*
*
*
* Optional. Additional session entity types to replace or extend developer
* entity types with. The entity synonyms apply to all languages and persist
* for the session of this query.
*
*
* repeated .google.cloud.dialogflow.v2.SessionEntityType session_entity_types = 5;
*/
java.util.List getSessionEntityTypesList();
/**
*
*
*
* Optional. Additional session entity types to replace or extend developer
* entity types with. The entity synonyms apply to all languages and persist
* for the session of this query.
*
*
* repeated .google.cloud.dialogflow.v2.SessionEntityType session_entity_types = 5;
*/
com.google.cloud.dialogflow.v2.SessionEntityType getSessionEntityTypes(int index);
/**
*
*
*
* Optional. Additional session entity types to replace or extend developer
* entity types with. The entity synonyms apply to all languages and persist
* for the session of this query.
*
*
* repeated .google.cloud.dialogflow.v2.SessionEntityType session_entity_types = 5;
*/
int getSessionEntityTypesCount();
/**
*
*
*
* Optional. Additional session entity types to replace or extend developer
* entity types with. The entity synonyms apply to all languages and persist
* for the session of this query.
*
*
* repeated .google.cloud.dialogflow.v2.SessionEntityType session_entity_types = 5;
*/
java.util.List extends com.google.cloud.dialogflow.v2.SessionEntityTypeOrBuilder>
getSessionEntityTypesOrBuilderList();
/**
*
*
*
* Optional. Additional session entity types to replace or extend developer
* entity types with. The entity synonyms apply to all languages and persist
* for the session of this query.
*
*
* repeated .google.cloud.dialogflow.v2.SessionEntityType session_entity_types = 5;
*/
com.google.cloud.dialogflow.v2.SessionEntityTypeOrBuilder getSessionEntityTypesOrBuilder(
int index);
/**
*
*
*
* Optional. This field can be used to pass custom data into the webhook
* associated with the agent. Arbitrary JSON objects are supported.
*
*
* .google.protobuf.Struct payload = 6;
*/
boolean hasPayload();
/**
*
*
*
* Optional. This field can be used to pass custom data into the webhook
* associated with the agent. Arbitrary JSON objects are supported.
*
*
* .google.protobuf.Struct payload = 6;
*/
com.google.protobuf.Struct getPayload();
/**
*
*
*
* Optional. This field can be used to pass custom data into the webhook
* associated with the agent. Arbitrary JSON objects are supported.
*
*
* .google.protobuf.Struct payload = 6;
*/
com.google.protobuf.StructOrBuilder getPayloadOrBuilder();
/**
*
*
*
* Optional. Configures the type of sentiment analysis to perform. If not
* provided, sentiment analysis is not performed.
*
*
*
* .google.cloud.dialogflow.v2.SentimentAnalysisRequestConfig sentiment_analysis_request_config = 10;
*
*/
boolean hasSentimentAnalysisRequestConfig();
/**
*
*
*
* Optional. Configures the type of sentiment analysis to perform. If not
* provided, sentiment analysis is not performed.
*
*
*
* .google.cloud.dialogflow.v2.SentimentAnalysisRequestConfig sentiment_analysis_request_config = 10;
*
*/
com.google.cloud.dialogflow.v2.SentimentAnalysisRequestConfig getSentimentAnalysisRequestConfig();
/**
*
*
*
* Optional. Configures the type of sentiment analysis to perform. If not
* provided, sentiment analysis is not performed.
*
*
*
* .google.cloud.dialogflow.v2.SentimentAnalysisRequestConfig sentiment_analysis_request_config = 10;
*
*/
com.google.cloud.dialogflow.v2.SentimentAnalysisRequestConfigOrBuilder
getSentimentAnalysisRequestConfigOrBuilder();
}