CardWithId
nesne için bir oluşturucu. Bu sınıf,
mesajı gönderin.
Yalnızca Google Chat uygulamalarında kullanılabilir. Google Workspace eklentileriyle kullanılamaz.
const cardSection = CardService.newCardSection(); cardSection.addWidget( CardService.newTextParagraph().setText('This is a text paragraph widget.')); const card = CardService.newCardBuilder() .setHeader(CardService.newCardHeader().setTitle('Card title')) .addSection(cardSection) .build(); const cardWithId = CardService.newCardWithId() .setCardId('card_id') .setCard(card);
Yöntemler
Yöntem | Dönüş türü | Kısa açıklama |
---|---|---|
setCard(card) | CardWithId | cardWithId cihazının kartını ayarlar. |
setCardId(id) | CardWithId | cardWithId öğesinin benzersiz kart kimliğini ayarlar. |
Ayrıntılı belgeler
setCard(card)
cardWithId
cihazının kartını ayarlar.
const cardHeader = CardService.newCardHeader() .setTitle('Card Header Title') .setSubtitle('Card Header Subtitle'); const card = CardService.newCardBuilder() .setHeader(cardHeader) .build(); const cardWithId = CardService.newCardWithId() .setCard(card);
Parametreler
Ad | Tür | Açıklama |
---|---|---|
card | Card | Kullanılacak Card . |
Return
CardWithId
: Zincirleme için bu nesne.
setCardId(id)
cardWithId
öğesinin benzersiz kart kimliğini ayarlar.
const cardWithId = CardService.newCardWithId(); // Sets the card ID of the cardWithId. cardWithId.setCardId('card_id');
Parametreler
Ad | Tür | Açıklama |
---|---|---|
id | String | Kullanılacak metin. |
Return
CardWithId
: Zincirleme için bu nesne.