[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-07-20 UTC."],[],[],null,["# NotificationPayload interface\n\nDisplay notification details. Details are sent through the [Send API](https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#notification).\n\n**Signature:** \n\n export interface NotificationPayload \n\nProperties\n----------\n\n| Property | Type | Description |\n|-------------------------------------------------------------------------|--------|-------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [body](./messaging_sw.notificationpayload.md#notificationpayloadbody) | string | The notification's body text. |\n| [icon](./messaging_sw.notificationpayload.md#notificationpayloadicon) | string | The URL to use for the notification's icon. If you don't send this key in the request, FCM displays the launcher icon specified in your app manifest. |\n| [image](./messaging_sw.notificationpayload.md#notificationpayloadimage) | string | The URL of an image that is downloaded on the device and displayed in the notification. |\n| [title](./messaging_sw.notificationpayload.md#notificationpayloadtitle) | string | The notification's title. |\n\nNotificationPayload.body\n------------------------\n\nThe notification's body text.\n\n**Signature:** \n\n body?: string;\n\nNotificationPayload.icon\n------------------------\n\nThe URL to use for the notification's icon. If you don't send this key in the request, FCM displays the launcher icon specified in your app manifest.\n\n**Signature:** \n\n icon?: string;\n\nNotificationPayload.image\n-------------------------\n\nThe URL of an image that is downloaded on the device and displayed in the notification.\n\n**Signature:** \n\n image?: string;\n\nNotificationPayload.title\n-------------------------\n\nThe notification's title.\n\n**Signature:** \n\n title?: string;"]]