/// <summary> /// *Experimental* /// Create a new Notification instance. /// </summary> /// <param name="options"></param> /// <returns></returns> public Notification Create(NotificationConstructorOptions options) { if (options == null) { options = new NotificationConstructorOptions(); } return(API.ApplyConstructor <Notification>(options)); }
/// <summary> /// *Experimental* /// Create a new Notification instance. /// </summary> /// <param name="options"></param> /// <returns></returns> public Notification Create(string options) { return(Create(NotificationConstructorOptions.Parse(options))); }