Show / Hide Table of Contents

Class Thread

A collection of messages representing a conversation.

Inheritance
System.Object
Thread
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.Gmail.v1.Data
Assembly: Google.Apis.Gmail.v1.dll
Syntax
public class Thread : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

HistoryId

The ID of the last history record that modified this thread.

Declaration
[JsonProperty("historyId")]
public virtual ulong? HistoryId { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

Id

The unique ID of the thread.

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

Messages

The list of messages in the thread.

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

Snippet

A short part of the message text.

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

Implements

IDirectResponseSchema
Back to top