Show / Hide Table of Contents

Class Events

Inheritance
object
Events
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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
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
IList<EventReminder>

Description

Description of the calendar. Read-only.

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

ETag

ETag of the collection.

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

Items

List of events on the calendar.

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

Kind

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

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
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
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
string

Summary

Title of the calendar. Read-only.

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

TimeZone

The time zone of the calendar. Read-only.

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

Updated

DateTime representation of UpdatedRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use UpdatedDateTimeOffset instead.")]
public virtual DateTime? Updated { get; set; }
Property Value
Type Description
DateTime?

UpdatedDateTimeOffset

DateTimeOffset representation of UpdatedRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? UpdatedDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

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
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX