Show / Hide Table of Contents

Class Calendar

Inheritance
System.Object
Calendar
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 Calendar : IDirectResponseSchema

Properties

ConferenceProperties

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

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

Description

Description of the calendar. Optional.

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

ETag

ETag of the resource.

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

Id

Identifier of the calendar. To retrieve IDs call the calendarList.list() method.

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

Kind

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

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

Location

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

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

Summary

Title of the calendar.

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

TimeZone

The time zone of the calendar. (Formatted as an IANA Time Zone Database name, e.g. "Europe/Zurich".) Optional.

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

Implements

IDirectResponseSchema
Back to top