Solved using:
this.firebase.onNotificationOpen().subscribe(x => {
if (!x.tap) {
let alert = this.alertCtrl.create({
title: "Notification",
subTitle: x.body,
buttons: ['Ok']
});
alert.present();
}
console.log(x);
});