using System.ComponentModel; namespace Tizen.Applications.Notifications { /// /// Enumeration for event type on notification. /// /// 8 [EditorBrowsable(EditorBrowsableState.Never)] public enum NotificationResponseEventType { /// /// Event type : Click on button 1. /// ClickOnButton1 = 0, /// /// Event type : Click on button 2. /// ClickOnButton2, /// /// Event type : Click on button 3. /// ClickOnButton3, /// /// Event type : Click on text_input button. /// ClickOnReplyButton = 8, /// /// Event type : Hidden by user. /// HiddenByUser = 100, /// /// Event type : Deleted by timer. /// HiddenByTimeout = 101, /// /// Event type : Deleted by timer. /// HiddenByExternal = 102, /// /// Event type : Clicked by user. /// ClickOnNotification = 200, /// /// Event type : Deleted by user. /// DeleteNotification = 201, /// /// Event type : Do not show again. /// CheckBox = 300, } }