---id:notification-objecttitle:Notification objectsidebar_label:Notification---Contains the payload data.Example:```jsNotifications.events().registerNotificationReceived((notification:Notification,completion:(response:NotificationCompletion)=>void)=>{// Prints the notification payloadconsole.log(JSON.stringify(notification.data));completion({alert:false,sound:false,badge:false});});```