Show / Hide Table of Contents

Class Events

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

Properties

AccessRole

The user's access role for this calendar. Read-only. Possible values are: - "none" - The user has no access. - "freeBusyReader" - The user has read access to free/busy information. - "reader" - The user has read access to the calendar. Private events will appear to users with reader access, but event details will be hidden. - "writer" - The user has read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible. - "owner" - The user has 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

DefaultReminders

The default reminders on the calendar for the authenticated user. These reminders apply to all events on this calendar that do not explicitly override them (i.e. do not have reminders.useDefault set to True).

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

Description

Description of the calendar. Read-only.

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

ETag

ETag of the collection.

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

Items

List of events on the calendar.

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

Kind

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

Declaration
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
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
public virtual string NextSyncToken { get; set; }
Property Value
Type Description
System.String

Summary

Title of the calendar. Read-only.

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

TimeZone

The time zone of the calendar. Read-only.

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

Updated

System.DateTime representation of UpdatedRaw.

Declaration
public virtual Nullable<DateTime> Updated { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

UpdatedRaw

Last modification time of the calendar (as a RFC3339 timestamp). Read-only.

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

Implements

IDirectResponseSchema
Back to top