/// <summary>
 /// Creates new action.
 /// </summary>
 /// <param name="id">Unique identifier for this action</param>
 /// <param name="title">Title for the action (and button label)</param>
 /// <param name="options">Options for the action</param>
 public iOSNotificationAction(string id, string title, iOSNotificationActionOptions options)
 {
     Id      = id;
     Title   = title;
     Options = options;
 }
 /// <summary>
 /// Creates new text input action.
 /// </summary>
 /// <param name="id">Unique identifier for this action</param>
 /// <param name="title">Title for the action (and button label)</param>
 /// <param name="options">Options for the action</param>
 /// <param name="buttonTitle">Label for a button for submitting the text input</param>
 public iOSTextInputNotificationAction(string id, string title, iOSNotificationActionOptions options, string buttonTitle)
     : base(id, title, options)
 {
     TextInputButtonTitle = buttonTitle;
 }