CardWithId
物件的建構工具。這個類別是
傳送訊息
僅適用於 Google Chat 應用程式。不適用於 Google Workspace 外掛程式。
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);
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
setCard(card) | CardWithId | 設定 cardWithId 的卡片。 |
setCardId(id) | CardWithId | 設定 cardWithId 的專屬卡片 ID。 |
內容詳盡的說明文件
setCard(card)
設定 cardWithId
的卡片。
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);
參數
名稱 | 類型 | 說明 |
---|---|---|
card | Card | 要使用的 Card 。 |
回攻員
CardWithId
:這個物件用於鏈結。
setCardId(id)
設定 cardWithId
的專屬卡片 ID。
const cardWithId = CardService.newCardWithId(); // Sets the card ID of the cardWithId. cardWithId.setCardId('card_id');
參數
名稱 | 類型 | 說明 |
---|---|---|
id | String | 要使用的文字。 |
回攻員
CardWithId
:這個物件用於鏈結。