Represents the parameters of the conversational query.
JSON representation |
---|
{ "timeZone": string, "geoLocation": { object ( |
Fields | |
---|---|
time |
The time zone of this conversational query from the time zone database, e.g., America/New_York, Europe/Paris. If not provided, the time zone specified in agent settings is used. |
geo |
The geo location of this conversational query. |
contexts[] |
The collection of contexts to be activated before this query is executed. |
reset |
Specifies whether to delete all contexts in the current session before the new ones are activated. |
session |
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. |
payload |
This field can be used to pass custom data to your webhook. Arbitrary JSON objects are supported. If supplied, the value is used to populate the |
sentiment |
Configures the type of sentiment analysis to perform. If not provided, sentiment analysis is not performed. |
webhook |
This field can be used to pass HTTP headers for a webhook call. These headers will be sent to webhook along with the headers that have been configured through the Dialogflow web console. The headers defined within this field will overwrite the headers configured through the Dialogflow console if there is a conflict. Header names are case-insensitive. Google's specified headers are not allowed. Including: "Host", "Content-Length", "Connection", "From", "User-Agent", "Accept-Encoding", "If-Modified-Since", "If-None-Match", "X-Forwarded-For", etc. An object containing a list of |
platform |
The platform of the virtual agent response messages. If not empty, only emits messages from this platform in the response. Valid values are the enum names of |
LatLng
An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this object must conform to the WGS84 standard. Values must be within normalized ranges.
JSON representation |
---|
{ "latitude": number, "longitude": number } |
Fields | |
---|---|
latitude |
The latitude in degrees. It must be in the range [-90.0, +90.0]. |
longitude |
The longitude in degrees. It must be in the range [-180.0, +180.0]. |
SentimentAnalysisRequestConfig
Configures the types of sentiment analysis to perform.
JSON representation |
---|
{ "analyzeQueryTextSentiment": boolean } |
Fields | |
---|---|
analyze |
Instructs the service to perform sentiment analysis on |