Show / Hide Table of Contents

Class CalendarListEntry

Inheritance
System.Object
CalendarListEntry
Implements
IDirectResponseSchema
Namespace: Google.Apis.Calendar.v3.Data
Assembly: Google.Apis.Calendar.v3.dll
Syntax
public class CalendarListEntry : object, IDirectResponseSchema

Properties

AccessRole

The effective access role that the authenticated user has on the calendar. Read-only. Possible values are: - "freeBusyReader" - Provides read access to free/busy information. - "reader" - Provides read access to the calendar. Private events will appear to users with reader access, but event details will be hidden. - "writer" - Provides read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible. - "owner" - Provides ownership of the calendar. This role has all of the permissions of the writer role with the additional ability to see and manipulate ACLs.

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

BackgroundColor

The main color of the calendar in the hexadecimal format "#0088aa". This property supersedes the index-based colorId property. To set or change this property, you need to specify colorRgbFormat=true in the parameters of the insert, update and patch methods. Optional.

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

ColorId

The color of the calendar. This is an ID referring to an entry in the calendar section of the colors definition (see the colors endpoint). This property is superseded by the backgroundColor and foregroundColor properties and can be ignored when using these properties. Optional.

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

ConferenceProperties

Conferencing properties for this calendar, for example what types of conferences are allowed.

Declaration
public virtual ConferenceProperties ConferenceProperties { get; set; }
Property Value
Type Description
ConferenceProperties

DefaultReminders

The default reminders that the authenticated user has for this calendar.

Declaration
public virtual IList<EventReminder> DefaultReminders { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<EventReminder>

Deleted

Whether this calendar list entry has been deleted from the calendar list. Read-only. Optional. The default is False.

Declaration
public virtual Nullable<bool> Deleted { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Description

Description of the calendar. Optional. Read-only.

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

ETag

ETag of the resource.

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

ForegroundColor

The foreground color of the calendar in the hexadecimal format "#ffffff". This property supersedes the index-based colorId property. To set or change this property, you need to specify colorRgbFormat=true in the parameters of the insert, update and patch methods. Optional.

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

Hidden

Whether the calendar has been hidden from the list. Optional. The default is False.

Declaration
public virtual Nullable<bool> Hidden { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Id

Identifier of the calendar.

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

Kind

Type of the resource ("calendar#calendarListEntry").

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

Location

Geographic location of the calendar as free-form text. Optional. Read-only.

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

NotificationSettings

The notifications that the authenticated user is receiving for this calendar.

Declaration
public virtual CalendarListEntry.NotificationSettingsData NotificationSettings { get; set; }
Property Value
Type Description
CalendarListEntry.NotificationSettingsData

Primary

Whether the calendar is the primary calendar of the authenticated user. Read-only. Optional. The default is False.

Declaration
public virtual Nullable<bool> Primary { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Selected

Whether the calendar content shows up in the calendar UI. Optional. The default is False.

Declaration
public virtual Nullable<bool> Selected { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Summary

Title of the calendar. Read-only.

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

SummaryOverride

The summary that the authenticated user has set for this calendar. Optional.

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

TimeZone

The time zone of the calendar. Optional. Read-only.

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

Implements

IDirectResponseSchema
Back to top