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
- 此对象,用于链接。