Class CardWithId

CardWithId

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ứcLoạ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ênLoạiMô tả
cardCardCard để 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ê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.