Class CardWithId

CardWithId

ตัวสร้างสำหรับออบเจ็กต์ 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

เอกสารประกอบโดยละเอียด

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);

พารามิเตอร์

ชื่อประเภทคำอธิบาย
cardCardCard ที่จะใช้

รีเทิร์น

CardWithId — ออบเจ็กต์นี้สําหรับการต่อเชื่อม


setCardId(id)

ตั้งค่ารหัสบัตรที่ไม่ซ้ำกันของ cardWithId

const cardWithId = CardService.newCardWithId();

// Sets the card ID of the cardWithId.
cardWithId.setCardId('card_id');

พารามิเตอร์

ชื่อประเภทคำอธิบาย
idStringข้อความที่จะใช้

รีเทิร์น

CardWithId — ออบเจ็กต์นี้สําหรับการต่อเชื่อม