Show / Hide Table of Contents

Class GoogleCloudDialogflowV2HumanAgentAssistantEvent

Represents a notification sent to Cloud Pub/Sub subscribers for human agent assistant events in a specific conversation.

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

Properties

Conversation

The conversation this notification refers to. Format: projects//conversations/.

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

ETag

The ETag of the item.

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

Participant

The participant that the suggestion is compiled for. Format: projects//conversations//participants/. It will not be set in legacy workflow.

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

SuggestionResults

The suggestion results payload that this notification refers to.

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

Implements

IDirectResponseSchema
In This Article
Back to top