Show / Hide Table of Contents

Class GoogleCloudDialogflowCxV3ConversationTurnUserInput

The input from the human user.

Inheritance
System.Object
GoogleCloudDialogflowCxV3ConversationTurnUserInput
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dialogflow.v2.Data
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class GoogleCloudDialogflowCxV3ConversationTurnUserInput : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

InjectedParameters

Parameters that need to be injected into the conversation during intent detection.

Declaration
[JsonProperty("injectedParameters")]
public virtual IDictionary<string, object> InjectedParameters { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>

Input

Supports text input, event input, dtmf input in the test case.

Declaration
[JsonProperty("input")]
public virtual GoogleCloudDialogflowCxV3QueryInput Input { get; set; }
Property Value
Type Description
GoogleCloudDialogflowCxV3QueryInput

IsWebhookEnabled

If webhooks should be allowed to trigger in response to the user utterance. Often if parameters are injected, webhooks should not be enabled.

Declaration
[JsonProperty("isWebhookEnabled")]
public virtual bool? IsWebhookEnabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
In This Article
Back to top