Show / Hide Table of Contents

Class GoogleCloudDialogflowV2ConversationEvent

Represents a notification sent to Pub/Sub subscribers for conversation lifecycle events.

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

Properties

Conversation

The unique identifier of the conversation this notification refers to. Format: projects//conversations/.

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

ErrorStatus

More detailed information about an error. Only set for type UNRECOVERABLE_ERROR_IN_PHONE_CALL.

Declaration
[JsonProperty("errorStatus")]
public virtual GoogleRpcStatus ErrorStatus { get; set; }
Property Value
Type Description
GoogleRpcStatus

ETag

The ETag of the item.

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

NewMessagePayload

Payload of NEW_MESSAGE event.

Declaration
[JsonProperty("newMessagePayload")]
public virtual GoogleCloudDialogflowV2Message NewMessagePayload { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2Message

Type

The type of the event that this notification refers to.

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

Implements

IDirectResponseSchema
In This Article
Back to top