UI 요소와의 상호작용에 대한 응답으로 사용자에게 표시되는 알림입니다.
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 | 알림에 표시할 텍스트를 설정합니다. |