Show / Hide Table of Contents

Class Event.CreatorData

The creator of the event. Read-only.

Inheritance
System.Object
Event.CreatorData
Namespace: Google.Apis.Calendar.v3.Data
Assembly: Google.Apis.Calendar.v3.dll
Syntax
public class CreatorData : object

Properties

DisplayName

The creator's name, if available.

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

Email

The creator's email address, if available.

Declaration
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
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
public virtual Nullable<bool> Self { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
Back to top