เครื่องมือสร้างสำหรับ 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);
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
card | Card | Card ที่จะใช้ |
รีเทิร์น
CardWithId
— ออบเจ็กต์นี้สำหรับการทำห่วงโซ่
setCardId(id)
ตั้งค่ารหัสบัตรที่ไม่ซ้ำกันของ cardWithId
const cardWithId = CardService.newCardWithId(); // Sets the card ID of the cardWithId. cardWithId.setCardId('card_id');
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
id | String | ข้อความที่จะใช้ |
รีเทิร์น
CardWithId
— ออบเจ็กต์นี้สำหรับการทำห่วงโซ่