Bir kullanıcı arayüzü öğesiyle etkileşimde bulunmaya yanıt olarak kullanıcıya gösterilen bildirim.
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(); }
Yöntemler
Yöntem | Dönüş türü | Kısa açıklama |
---|---|---|
setText(text) | Notification | Bildirimde gösterilecek metni ayarlar. |
Ayrıntılı belgeler
setText(text)
Bildirimde gösterilecek metni ayarlar. Zorunlu.
Parametreler
Ad | Tür | Açıklama |
---|---|---|
text | String | Bildirim metni. |
Return
Notification
: Zincirleme için bu nesne.