Google Cloud Dialogflow v2 API - Class QueryParameters (4.18.0)

public sealed class QueryParameters : IMessage<QueryParameters>, IEquatable<QueryParameters>, IDeepCloneable<QueryParameters>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Dialogflow v2 API class QueryParameters.

Represents the parameters of the conversational query.

Inheritance

object > QueryParameters

Namespace

Google.Cloud.Dialogflow.V2

Assembly

Google.Cloud.Dialogflow.V2.dll

Constructors

QueryParameters()

public QueryParameters()

QueryParameters(QueryParameters)

public QueryParameters(QueryParameters other)
Parameter
NameDescription
otherQueryParameters

Properties

Contexts

public RepeatedField<Context> Contexts { get; }

The collection of contexts to be activated before this query is executed.

Property Value
TypeDescription
RepeatedFieldContext

GeoLocation

public LatLng GeoLocation { get; set; }

The geo location of this conversational query.

Property Value
TypeDescription
LatLng

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
TypeDescription
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.v2.Intent.Message.platform].

Property Value
TypeDescription
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
TypeDescription
bool

SentimentAnalysisRequestConfig

public SentimentAnalysisRequestConfig SentimentAnalysisRequestConfig { get; set; }

Configures the type of sentiment analysis to perform. If not provided, sentiment analysis is not performed.

Property Value
TypeDescription
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
TypeDescription
RepeatedFieldSessionEntityType

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
TypeDescription
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 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.

Property Value
TypeDescription
MapFieldstringstring