Class Notification

Notification

यूज़र इंटरफ़ेस (यूआई) एलिमेंट के साथ इंटरैक्ट करने पर, उपयोगकर्ता को दिखने वाली सूचना.

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सूचना में दिखाने के लिए टेक्स्ट सेट करता है.

विस्तृत दस्तावेज़

setText(text)

सूचना में दिखाने के लिए टेक्स्ट सेट करता है. ज़रूरी है.

पैरामीटर

नामटाइपब्यौरा
textStringसूचना का टेक्स्ट.

वापसी का टिकट

Notification — चेन बनाने के लिए यह ऑब्जेक्ट.