作为响应与界面元素交互而向用户显示的通知。
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(); }
方法
方法 | 返回类型 | 简介 |
---|---|---|
setText(text) | Notification | 设置要在通知中显示的文本。 |