Uma notificação mostrada ao usuário como uma resposta à interação com um elemento da interface.
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étodos
Método | Tipo de retorno | Breve descrição |
---|---|---|
setText(text) | Notification | Define o texto que será exibido na notificação. |
Documentação detalhada
setText(text)
Define o texto que será exibido na notificação. Obrigatório.
Parâmetros
Nome | Tipo | Descrição |
---|---|---|
text | String | O texto da notificação. |
Retornar
Notification
: este objeto, para encadeamento.