Show / Hide Table of Contents

Class GoogleCloudDialogflowV2beta1WebhookRequest

The request message for a webhook call.

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

Properties

AlternativeQueryResults

Alternative query results from KnowledgeService.

Declaration
[JsonProperty("alternativeQueryResults")]
public virtual IList<GoogleCloudDialogflowV2beta1QueryResult> AlternativeQueryResults { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudDialogflowV2beta1QueryResult>

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 GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest OriginalDetectIntentRequest { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest

QueryResult

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

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

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. Supported formats: - projects//agent/sessions/, -projects//locations//agent/sessions/, -projects//agent/environments//users//sessions/, -projects//locations//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