Google Apps Script API
    Preparing search index...

    A notification shown to the user as a response to interacting with a UI element.

    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();
    }
    
    interface Notification {
        setText(text: string): GoogleAppsScript.Card_Service.Notification;
    }
    Index

    Methods

    Methods