Class GoogleCloudDialogflowV2WebhookRequest
The request message for a webhook call.
Implements
Inherited Members
Namespace: Google.Apis.Dialogflow.v3.Data
Assembly: Google.Apis.Dialogflow.v3.dll
Syntax
public class GoogleCloudDialogflowV2WebhookRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
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 |
---|---|
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 |
---|---|
string |