Class Event.GadgetData
A gadget that extends this event. Gadgets are deprecated; this structure is instead only used for returning birthday calendar metadata.
public class Event.GadgetData
- Inheritance
-
Event.GadgetData
- Inherited Members
Constructors
GadgetData()
public GadgetData()
Properties
Display
The gadget's display mode. Deprecated. Possible values are: - "icon" - The gadget displays next to the event's title in the calendar view. - "chip" - The gadget displays when the event is clicked.
public virtual string Display { get; set; }
Property Value
Height
The gadget's height in pixels. The height must be an integer greater than 0. Optional. Deprecated.
public virtual int? Height { get; set; }
Property Value
- int?
IconLink
The gadget's icon URL. The URL scheme must be HTTPS. Deprecated.
public virtual string IconLink { get; set; }
Property Value
Link
The gadget's URL. The URL scheme must be HTTPS. Deprecated.
public virtual string Link { get; set; }
Property Value
Preferences
Preferences.
public virtual IDictionary<string, string> Preferences { get; set; }
Property Value
Title
The gadget's title. Deprecated.
public virtual string Title { get; set; }
Property Value
Type
The gadget's type. Deprecated.
public virtual string Type { get; set; }
Property Value
Width
The gadget's width in pixels. The width must be an integer greater than 0. Optional. Deprecated.
public virtual int? Width { get; set; }
Property Value
- int?