Show / Hide Table of Contents

Class GoogleCloudDialogflowV2Message

Represents a message posted into a conversation.

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

Properties

Content

Required. The message content.

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

CreateTime

Output only. The time when the message was created.

Declaration
[JsonProperty("createTime")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

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

LanguageCode

Optional. The message language. This should be a BCP-47 language tag. Example: "en-US".

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

MessageAnnotation

Output only. The annotation for the message.

Declaration
[JsonProperty("messageAnnotation")]
public virtual GoogleCloudDialogflowV2MessageAnnotation MessageAnnotation { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2MessageAnnotation

Name

The unique identifier of the message. Format: projects//locations//conversations//messages/.

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

Participant

Output only. The participant that sends this message.

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

ParticipantRole

Output only. The role of the participant.

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

Implements

IDirectResponseSchema
In This Article
Back to top