Class Event.OrganizerData
The organizer of the event. If the organizer is also an attendee, this is indicated with a separate entry in attendees with the organizer field set to True. To change the organizer, use the move operation. Read-only, except when importing an event.
Inheritance
System.Object
Event.OrganizerData
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 OrganizerData
Properties
DisplayName
The organizer's name, if available.
Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
The organizer's email address, if available. It must be a valid email address as per RFC5322.
Declaration
[JsonProperty("email")]
public virtual string Email { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Id
The organizer'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 organizer 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> |