QueryParameters(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Represents the parameters of the conversational query. .. attribute:: time_zone
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.
:type: str
Attributes | |
---|---|
Name | Description |
geo_location |
google.type.latlng_pb2.LatLng
The geo location of this conversational query. |
contexts |
Sequence[google.cloud.dialogflow_v2.types.Context]
The collection of contexts to be activated before this query is executed. |
reset_contexts |
bool
Specifies whether to delete all contexts in the current session before the new ones are activated. |
session_entity_types |
Sequence[google.cloud.dialogflow_v2.types.SessionEntityType]
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 |
google.protobuf.struct_pb2.Struct
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 WebhookRequest.original_detect_intent_request.payload
field sent to your webhook.
|
sentiment_analysis_request_config |
google.cloud.dialogflow_v2.types.SentimentAnalysisRequestConfig
Configures the type of sentiment analysis to perform. If not provided, sentiment analysis is not performed. |
webhook_headers |
Sequence[google.cloud.dialogflow_v2.types.QueryParameters.WebhookHeadersEntry]
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. |
Classes
WebhookHeadersEntry
WebhookHeadersEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)
The abstract base class for a message.
Parameters | |
---|---|
Name | Description |
kwargs |
dict
Keys and values corresponding to the fields of the message. |
mapping |
Union[dict,
A dictionary or message to be used to determine the values for this message. |
ignore_unknown_fields |
Optional(bool)
If True, do not raise errors for unknown fields. Only applied if |