public sealed class QueryParameters : IMessage<QueryParameters>, IEquatable<QueryParameters>, IDeepCloneable<QueryParameters>, IBufferMessage, IMessage
Represents the parameters of a conversational query.
Inheritance
System.Object > QueryParametersImplements
Google.Protobuf.IMessage<QueryParameters>, System.IEquatable<QueryParameters>, Google.Protobuf.IDeepCloneable<QueryParameters>, Google.Protobuf.IBufferMessage, Google.Protobuf.IMessageNamespace
Google.Cloud.Dialogflow.Cx.V3Assembly
Google.Cloud.Dialogflow.Cx.V3.dll
Constructors
QueryParameters()
public QueryParameters()
QueryParameters(QueryParameters)
public QueryParameters(QueryParameters other)
Parameter | |
---|---|
Name | Description |
other | QueryParameters |
Properties
AnalyzeQueryTextSentiment
public bool AnalyzeQueryTextSentiment { get; set; }
Configures whether sentiment analysis should be performed. If not provided, sentiment analysis is not performed.
Property Value | |
---|---|
Type | Description |
System.Boolean |
GeoLocation
public LatLng GeoLocation { get; set; }
The geo location of this conversational query.
Property Value | |
---|---|
Type | Description |
Google.Type.LatLng |
Parameters
public Struct Parameters { get; set; }
Additional parameters to be put into [session parameters][SessionInfo.parameters]. To remove a parameter from the session, clients should explicitly set the parameter value to null.
Depending on your protocol or client library language, this is a map, associative array, symbol table, dictionary, or JSON object composed of a collection of (MapKey, MapValue) pairs:
- MapKey type: string
- MapKey value: parameter name
- MapValue type:
- If parameter's entity type is a composite entity: map
- Else: depending on parameter value type, could be one of string, number, boolean, null, list or map
- MapValue value:
- If parameter's entity type is a composite entity: map from composite entity property names to property values
- Else: parameter value
Property Value | |
---|---|
Type | Description |
Google.Protobuf.WellKnownTypes.Struct |
Payload
public Struct Payload { get; set; }
This field can be used to pass custom data into the webhook associated with the agent. Arbitrary JSON objects are supported.
Property Value | |
---|---|
Type | Description |
Google.Protobuf.WellKnownTypes.Struct |
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 |
Google.Protobuf.Collections.RepeatedField<SessionEntityType> |
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 the agent is used.
Property Value | |
---|---|
Type | Description |
System.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 |
Google.Protobuf.Collections.MapField<System.String, System.String> |