Notification présentée à l'utilisateur en réponse à une interaction avec un élément d'interface utilisateur.
var 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 |
---|---|---|
setText(text) | Notification | Définit le texte à afficher dans la notification. |
Documentation détaillée
setText(text)
Définit le texte à afficher dans la notification. Obligatoire.
Paramètres
Nom | Type | Description |
---|---|---|
text | String | Texte de la notification. |
Renvois
Notification
: objet utilisé pour le chaînage.