Google Chat mesajı
Google Chat'i genişleten Google Workspace eklentileri için kullanılabilir.
const card = CardService.newCardBuilder() .setHeader(CardService.newCardHeader().setTitle("Card Title")) .addSection(CardService.newCardSection() .addWidget(CardService.newTextParagraph().setText("Text paragraph"))) .build(); const cardWithId = CardService.newCardWithId().setCardId("card_one").setCard(card); const message = AddOnsResponseService.newChatMessage().addCardWithId(cardWithId);
Yöntemler
| Yöntem | Dönüş türü | Kısa açıklama |
|---|---|---|
add | Chat | İletinin kartını ayarlar. |
set | Chat | İletinin metnini ayarlar. |
Ayrıntılı belgeler
add Card With Id(cardWithId)
İletinin kartını ayarlar.
const card = CardService.newCardBuilder() .setHeader(CardService.newCardHeader().setTitle("Card Title")) .addSection(CardService.newCardSection() .addWidget(CardService.newTextParagraph().setText("Text paragraph"))) .build(); const cardWithId = CardService.newCardWithId().setCardId("card_one").setCard(card); const message = AddOnsResponseService.newChatMessage().addCardWithId(cardWithId);
Parametreler
| Ad | Tür | Açıklama |
|---|---|---|
card | Card | Ayarlanacak cardWithId. |
Return
Chat: Zincirleme için bu nesne.
set Text(text)
İletinin metnini ayarlar.
const message = AddOnsResponseService.newChatMessage().setText("Example text");
Parametreler
| Ad | Tür | Açıklama |
|---|---|---|
text | String | İletinin metin kısmı. |
Return
Chat: Zincirleme için bu nesne.