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