Class GoogleCloudDialogflowCxV3beta1QueryInput
Represents the query input. It can contain one of: 1. A conversational query in the form of text. 2. An intent query that specifies which intent to trigger. 3. Natural language speech audio to be processed. 4. An event to be triggered. 5. DTMF digits to invoke an intent and fill in parameter value. 6. The results of a tool executed by the client.
Implements
Inherited Members
Namespace: Google.Apis.Dialogflow.v3beta1.Data
Assembly: Google.Apis.Dialogflow.v3beta1.dll
Syntax
public class GoogleCloudDialogflowCxV3beta1QueryInput : IDirectResponseSchema
Properties
Audio
The natural language speech audio to be processed.
Declaration
[JsonProperty("audio")]
public virtual GoogleCloudDialogflowCxV3beta1AudioInput Audio { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3beta1AudioInput |
Dtmf
The DTMF event to be handled.
Declaration
[JsonProperty("dtmf")]
public virtual GoogleCloudDialogflowCxV3beta1DtmfInput Dtmf { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3beta1DtmfInput |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Event__
The event to be triggered.
Declaration
[JsonProperty("event")]
public virtual GoogleCloudDialogflowCxV3beta1EventInput Event__ { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3beta1EventInput |
Intent
The intent to be triggered.
Declaration
[JsonProperty("intent")]
public virtual GoogleCloudDialogflowCxV3beta1IntentInput Intent { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3beta1IntentInput |
LanguageCode
Required. The language of the input. See Language Support for a list of the currently supported language codes. Note that queries in the same session do not necessarily need to specify the same language.
Declaration
[JsonProperty("languageCode")]
public virtual string LanguageCode { get; set; }
Property Value
Type | Description |
---|---|
string |
Text
The natural language text to be processed.
Declaration
[JsonProperty("text")]
public virtual GoogleCloudDialogflowCxV3beta1TextInput Text { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3beta1TextInput |
ToolCallResult
The results of a tool executed by the client.
Declaration
[JsonProperty("toolCallResult")]
public virtual GoogleCloudDialogflowCxV3beta1ToolCallResult ToolCallResult { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3beta1ToolCallResult |