Show / Hide Table of Contents

Class CalendarList

Inheritance
System.Object
CalendarList
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.Calendar.v3.Data
Assembly: Google.Apis.Calendar.v3.dll
Syntax
public class CalendarList : IDirectResponseSchema

Properties

ETag

ETag of the collection.

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

Items

Calendars that are present on the user's calendar list.

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

Kind

Type of the collection ("calendar#calendarList").

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

NextPageToken

Token used to access the next page of this result. Omitted if no further results are available, in which case nextSyncToken is provided.

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

NextSyncToken

Token used at a later point in time to retrieve only the entries that have changed since this result was returned. Omitted if further results are available, in which case nextPageToken is provided.

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

Implements

IDirectResponseSchema
Back to top