Class GoogleCloudDialogflowCxV3QueryInput
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.v3.Data
Assembly: Google.Apis.Dialogflow.v3.dll
Syntax
public class GoogleCloudDialogflowCxV3QueryInput : IDirectResponseSchema
Properties
Audio
The natural language speech audio to be processed.
Declaration
[JsonProperty("audio")]
public virtual GoogleCloudDialogflowCxV3AudioInput Audio { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3AudioInput |
Dtmf
The DTMF event to be handled.
Declaration
[JsonProperty("dtmf")]
public virtual GoogleCloudDialogflowCxV3DtmfInput Dtmf { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3DtmfInput |
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 GoogleCloudDialogflowCxV3EventInput Event__ { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3EventInput |
Intent
The intent to be triggered.
Declaration
[JsonProperty("intent")]
public virtual GoogleCloudDialogflowCxV3IntentInput Intent { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3IntentInput |
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 GoogleCloudDialogflowCxV3TextInput Text { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDialogflowCxV3TextInput |