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(); }
메서드
메서드 | 반환 유형 | 간략한 설명 |
---|---|---|
set | Notification | 알림에 표시할 텍스트를 설정합니다. |