Class CardWithId

CardWithId

Trình tạo cho các đối tượng CardWithId. Lớp này là giá trị nhận dạng duy nhất cho một thẻ trong thông báo khi gửi nhiều thẻ.

Chỉ dành 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ứcLoại dữ liệu trả vềMô tả ngắn
setCard(card)CardWithIdĐặt thẻ của cardWithId.
setCardId(id)CardWithIdĐặt mã thẻ duy nhất của cardWithId.

Tài liệu chi tiết

setCard(card)

Đặt thẻ của 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ênLoạiMô tả
cardCardCard cần sử dụng.

Cầu thủ trả bóng

CardWithId – Đối tượng này, để tạo chuỗi.


setCardId(id)

Đặt mã 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ênLoạiMô tả
idStringVăn bản cần sử dụng.

Cầu thủ trả bóng

CardWithId – Đối tượng này, để tạo chuỗi.