Notification affichée à l'utilisateur en réponse à une interaction avec un élément d'interface utilisateur.
const action = CardService.newAction().setFunctionName('notificationCallback'); CardService.newTextButton().setText('Save').setOnClickAction(action); // ... function notificationCallback() { return CardService.newActionResponseBuilder() .setNotification( CardService.newNotification().setText('Some info to display to user'), ) .build(); }
Méthodes
Méthode | Type renvoyé | Brève description |
---|---|---|
set | Notification | Définit le texte à afficher dans la notification. |
Documentation détaillée
set Text(text)
Définit le texte à afficher dans la notification. Obligatoire.
Paramètres
Nom | Type | Description |
---|---|---|
text | String | Texte de la notification. |
Renvois
Notification
: cet objet, pour le chaînage.