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
object
ChatConserverMessageContent
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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<T><SocialCommonAttachmentAttachment>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
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<T><Segment>

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX