Class QueryParameters (1.0.0)

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

Represents the parameters of a conversational query.

Inheritance

System.Object > QueryParameters

Implements

Google.Protobuf.IMessage<QueryParameters>, System.IEquatable<QueryParameters>, Google.Protobuf.IDeepCloneable<QueryParameters>, Google.Protobuf.IBufferMessage, Google.Protobuf.IMessage

Namespace

Google.Cloud.Dialogflow.Cx.V3

Assembly

Google.Cloud.Dialogflow.Cx.V3.dll

Constructors

QueryParameters()

public QueryParameters()

QueryParameters(QueryParameters)

public QueryParameters(QueryParameters other)
Parameter
NameDescription
otherQueryParameters

Properties

AnalyzeQueryTextSentiment

public bool AnalyzeQueryTextSentiment { get; set; }

Configures whether sentiment analysis should be performed. If not provided, sentiment analysis is not performed.

Property Value
TypeDescription
System.Boolean

GeoLocation

public LatLng GeoLocation { get; set; }

The geo location of this conversational query.

Property Value
TypeDescription
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
TypeDescription
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
TypeDescription
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
TypeDescription
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
TypeDescription
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
TypeDescription
Google.Protobuf.Collections.MapField<System.String, System.String>