Class GoogleCloudDialogflowV2QueryInput
Represents the query input. It can contain either: 1. An audio config which instructs the speech recognizer how to process the speech audio. 2. A conversational query in the form of text. 3. An event that specifies which intent to trigger.
Implements
Inherited Members
Namespace: Google.Apis.Dialogflow.v2.Data
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class GoogleCloudDialogflowV2QueryInput : IDirectResponseSchema
Properties
AudioConfig
Instructs the speech recognizer how to process the speech audio.
Declaration
[JsonProperty("audioConfig")]
public virtual GoogleCloudDialogflowV2InputAudioConfig AudioConfig { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowV2InputAudioConfig |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Event__
The event to be processed.
Declaration
[JsonProperty("event")]
public virtual GoogleCloudDialogflowV2EventInput Event__ { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowV2EventInput |
Text
The natural language text to be processed. Text length must not exceed 256 character for virtual agent interactions.
Declaration
[JsonProperty("text")]
public virtual GoogleCloudDialogflowV2TextInput Text { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowV2TextInput |