Class Notification

通知

使用者與 UI 元素互動時,系統會顯示這類通知。

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:這個物件用於鏈結。