Class Notification

通知

系统在用户与界面元素互动时向用户显示的通知。

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();
}

方法

方法返回类型简介
setText(text)Notification设置要在通知中显示的文字。

详细文档

setText(text)

设置要在通知中显示的文字。必填。

参数

名称类型说明
textString通知文本。

返回

Notification - 此对象,用于链式调用。