Show / Hide Table of Contents

Class Event.RemindersData

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

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

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