public sealed class QueryParameters : IMessage<QueryParameters>, IEquatable<QueryParameters>, IDeepCloneable<QueryParameters>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Cloud Dialogflow v2beta1 API class QueryParameters.
Represents the parameters of the conversational query.
Implements
IMessageQueryParameters, IEquatableQueryParameters, IDeepCloneableQueryParameters, IBufferMessage, IMessageNamespace
Google.Cloud.Dialogflow.V2Beta1Assembly
Google.Cloud.Dialogflow.V2Beta1.dll
Constructors
QueryParameters()
public QueryParameters()
QueryParameters(QueryParameters)
public QueryParameters(QueryParameters other)
Parameter | |
---|---|
Name | Description |
other |
QueryParameters |
Properties
Contexts
public RepeatedField<Context> Contexts { get; }
The collection of contexts to be activated before this query is executed.
Property Value | |
---|---|
Type | Description |
RepeatedFieldContext |
GeoLocation
public LatLng GeoLocation { get; set; }
The geo location of this conversational query.
Property Value | |
---|---|
Type | Description |
LatLng |
KnowledgeBaseNames
public RepeatedField<string> KnowledgeBaseNames { get; }
KnowledgeBases to get alternative results from. If not set, the
KnowledgeBases enabled in the agent (through UI) will be used.
Format: projects/<Project ID>/knowledgeBases/<Knowledge Base ID>
.
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |
Payload
public Struct Payload { get; set; }
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.
Property Value | |
---|---|
Type | Description |
Struct |
Platform
public string Platform { get; set; }
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 [platform][google.cloud.dialogflow.v2beta1.Intent.Message.platform].
Property Value | |
---|---|
Type | Description |
string |
ResetContexts
public bool ResetContexts { get; set; }
Specifies whether to delete all contexts in the current session before the new ones are activated.
Property Value | |
---|---|
Type | Description |
bool |
SentimentAnalysisRequestConfig
public SentimentAnalysisRequestConfig SentimentAnalysisRequestConfig { get; set; }
Configures the type of sentiment analysis to perform. If not provided, sentiment analysis is not performed. Note: Sentiment Analysis is only currently available for Essentials Edition agents.
Property Value | |
---|---|
Type | Description |
SentimentAnalysisRequestConfig |
SessionEntityTypes
public RepeatedField<SessionEntityType> SessionEntityTypes { get; }
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.
Property Value | |
---|---|
Type | Description |
RepeatedFieldSessionEntityType |
SubAgents
public RepeatedField<SubAgent> SubAgents { get; }
For mega agent query, directly specify which sub agents to query. If any specified sub agent is not linked to the mega agent, an error will be returned. If empty, Dialogflow will decide which sub agents to query. If specified for a non-mega-agent query, will be silently ignored.
Property Value | |
---|---|
Type | Description |
RepeatedFieldSubAgent |
TimeZone
public string TimeZone { get; set; }
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.
Property Value | |
---|---|
Type | Description |
string |
WebhookHeaders
public MapField<string, string> WebhookHeaders { get; }
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 Dialogflow web console. The headers defined within this field will overwrite the headers configured through 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.
Property Value | |
---|---|
Type | Description |
MapFieldstringstring |