Show / Hide Table of Contents

Class GoogleCloudDialogflowV2WebhookRequest

The request message for a webhook call.

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

Properties

ETag

The ETag of the item.

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

OriginalDetectIntentRequest

Optional. The contents of the original request that was passed to [Streaming]DetectIntent call.

Declaration
[JsonProperty("originalDetectIntentRequest")]
public virtual GoogleCloudDialogflowV2OriginalDetectIntentRequest OriginalDetectIntentRequest { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2OriginalDetectIntentRequest

QueryResult

The result of the conversational query or event processing. Contains the same value as [Streaming]DetectIntentResponse.query_result.

Declaration
[JsonProperty("queryResult")]
public virtual GoogleCloudDialogflowV2QueryResult QueryResult { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2QueryResult

ResponseId

The unique identifier of the response. Contains the same value as [Streaming]DetectIntentResponse.response_id.

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

Session

The unique identifier of detectIntent request session. Can be used to identify end-user inside webhook implementation. Format: projects//agent/sessions/, or projects//agent/environments//users//sessions/.

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

Implements

IDirectResponseSchema
In This Article
Back to top