Show / Hide Table of Contents

Class GoogleCloudDialogflowCxV3WebhookRequestIntentInfo

Represents intent information communicated to the webhook.

Inheritance
object
GoogleCloudDialogflowCxV3WebhookRequestIntentInfo
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dialogflow.v3beta1.Data
Assembly: Google.Apis.Dialogflow.v3beta1.dll
Syntax
public class GoogleCloudDialogflowCxV3WebhookRequestIntentInfo : IDirectResponseSchema

Properties

Confidence

The confidence of the matched intent. Values range from 0.0 (completely uncertain) to 1.0 (completely certain).

Declaration
[JsonProperty("confidence")]
public virtual float? Confidence { get; set; }
Property Value
Type Description
float?

DisplayName

Always present. The display name of the last matched intent.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

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

LastMatchedIntent

Always present. The unique identifier of the last matched intent. Format: projects//locations//agents//intents/.

Declaration
[JsonProperty("lastMatchedIntent")]
public virtual string LastMatchedIntent { get; set; }
Property Value
Type Description
string

Parameters

Parameters identified as a result of intent matching. This is a map of the name of the identified parameter to the value of the parameter identified from the user's utterance. All parameters defined in the matched intent that are identified will be surfaced here.

Declaration
[JsonProperty("parameters")]
public virtual IDictionary<string, GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue> Parameters { get; set; }
Property Value
Type Description
IDictionary<string, GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX