Show / Hide Table of Contents

Class Event.CreatorData

The creator of the event. Read-only.

Inheritance
System.Object
Event.CreatorData
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 CreatorData

Properties

DisplayName

The creator's name, if available.

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

Email

The creator's email address, if available.

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

Id

The creator's Profile ID, if available. It corresponds to the id field in the People collection of the Google+ API

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

Self

Whether the creator corresponds to the calendar on which this copy of the event appears. Read- only. The default is False.

Declaration
[JsonProperty("self")]
public virtual bool? Self { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
Back to top