Show / Hide Table of Contents

Class Event.RemindersData

Information about the event's reminders for the authenticated user.

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

Properties

Overrides

If the event doesn't use the default reminders, this lists the reminders specific to the event, or, if not set, indicates that no reminders are set for this event. The maximum number of override reminders is 5.

Declaration
[JsonProperty("overrides")]
public virtual IList<EventReminder> Overrides { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<EventReminder>

UseDefault

Whether the default reminders of the calendar apply to the event.

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