public Notification() { this.alert = null; this.IosNotification = null; this.AndroidNotification = null; this.WinphoneNotification = null; }
public static Notification winphone(String alert) { var platformNotification = new WinphoneNotification().setAlert(alert); var notificaiton = new Notification().setAlert(alert); notificaiton.WinphoneNotification = platformNotification; return(notificaiton); }
public Notification setWinphone(WinphoneNotification winphone) { this.WinphoneNotification = winphone; return(this); }