Class Notification

Notificação

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étodoTipo de retornoBreve descrição
setText(text)NotificationDefine o texto a ser mostrado na notificação.

Documentação detalhada

setText(text)

Define o texto a ser mostrado na notificação. Obrigatório.

Parâmetros

NomeTipoDescrição
textStringO texto da notificação.

Retornar

Notification: este objeto, para encadeamento.