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