Show / Hide Table of Contents

Class Events

Inheritance
System.Object
Events
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 Events : 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
[JsonProperty("accessRole")]
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
[JsonProperty("defaultReminders")]
public virtual IList<EventReminder> DefaultReminders { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<EventReminder>

Description

Description of the calendar. Read-only.

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

ETag

ETag of the collection.

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

Items

List of events on the calendar.

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

Kind

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

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

Summary

Title of the calendar. Read-only.

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

TimeZone

The time zone of the calendar. Read-only.

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

Updated

System.DateTime representation of UpdatedRaw.

Declaration
[JsonIgnore]
public virtual 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
[JsonProperty("updated")]
public virtual string UpdatedRaw { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top