Show / Hide Table of Contents

Class ChatConserverMessageContent

The content of a chat message, which includes 0 or more segments along with 0 or more embeds, which represent various attachment types (like photos).

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

Properties

Attachment

Items attached to this message, such as photos. This should NOT be set by clients. It will be automatically set from media uploaded along with this request and using the information provided in existing_media.

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

ETag

The ETag of the item.

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

Segment

The text part of the message content. Segments are concatenated together to yield the full message. A message can have zero or more segments.

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

Implements

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