Show / Hide Table of Contents

Class GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue

Represents a value for an intent parameter.

Inheritance
System.Object
GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue
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 GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

OriginalValue

Always present. Original text value extracted from user utterance.

Declaration
[JsonProperty("originalValue")]
public virtual string OriginalValue { get; set; }
Property Value
Type Description
System.String

ResolvedValue

Always present. Structured value for the parameter extracted from user utterance.

Declaration
[JsonProperty("resolvedValue")]
public virtual object ResolvedValue { get; set; }
Property Value
Type Description
System.Object

Implements

IDirectResponseSchema
In This Article
Back to top