Class Notification

Notification

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

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();
}

तरीके

तरीकारिटर्न टाइपसंक्षिप्त विवरण
setText(text)Notificationसूचना में दिखाने के लिए टेक्स्ट सेट करता है.

ज़्यादा जानकारी वाला दस्तावेज़

setText(text)

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

पैरामीटर

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

वापसी का टिकट

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