Show / Hide Table of Contents

Class AppsDynamiteSharedMessageInfo

Information that references a Dynamite chat message. This is only used for Activity Feed messages.

Inheritance
System.Object
AppsDynamiteSharedMessageInfo
Implements
Google.Apis.Requests.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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class AppsDynamiteSharedMessageInfo : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

MessageId

Id of the source chat message. This is kept here because the top-level message ID to refers the AF message ID.

Declaration
[JsonProperty("messageId")]
public virtual MessageId MessageId { get; set; }
Property Value
Type Description
MessageId

MessageType

The type of the source chat message.

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

TopicReadTimeUsec

Timestamp of when the topic containing the message has been read by the user. This is populated if the message references an inline reply, in which case the space may be marked as read but the topic still has unread messages.

Declaration
[JsonProperty("topicReadTimeUsec")]
public virtual long? TopicReadTimeUsec { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top