Trình tạo cho các đối tượng CardWithId
. Lớp này là mã nhận dạng duy nhất của một thẻ trong
khi gửi nhiều thẻ.
Chỉ dùng được cho ứng dụng Google Chat. Không dùng được cho các Tiện ích bổ sung của 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);
Phương thức
Phương thức | Loại dữ liệu trả về | Mô tả ngắn |
---|---|---|
setCard(card) | CardWithId | Đặt thẻ cho cardWithId . |
setCardId(id) | CardWithId | Đặt mã nhận dạng thẻ duy nhất của cardWithId . |
Tài liệu chi tiết
setCard(card)
Đặt thẻ cho 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);
Tham số
Tên | Loại | Mô tả |
---|---|---|
card | Card | Card để sử dụng. |
Cầu thủ trả bóng
CardWithId
– Đối tượng này để tạo chuỗi.
setCardId(id)
Đặt mã nhận dạng thẻ duy nhất của cardWithId
.
const cardWithId = CardService.newCardWithId(); // Sets the card ID of the cardWithId. cardWithId.setCardId('card_id');
Tham số
Tên | Loại | Mô tả |
---|---|---|
id | String | Văn bản cần sử dụng. |
Cầu thủ trả bóng
CardWithId
– Đối tượng này để tạo chuỗi.