Show / Hide Table of Contents

Class ListHistoryResponse

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

Properties

ETag

The ETag of the item.

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

History

List of history records. Any messages contained in the response will typically only have id and threadId fields populated.

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

HistoryId

The ID of the mailbox's current history record.

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

NextPageToken

Page token to retrieve the next page of results in the list.

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

Implements

IDirectResponseSchema
Back to top