ตัวสร้างสำหรับออบเจ็กต์ Chat
ใช้ได้กับแอป Google Chat เท่านั้น ไม่พร้อมใช้งานสำหรับส่วนเสริมของ Google Workspace
const cardSection = CardService.newCardSection(); cardSection.addWidget( CardService.newTextParagraph().setText('This is a text paragraph widget.'), ); const card = CardService.newCardBuilder() .setName('Card name') .setHeader(CardService.newCardHeader().setTitle('Card title')) .addSection(cardSection) .build(); const cardWithId = CardService.newCardWithId().setCardId('card_id').setCard(card); const chatResponse = CardService.newChatResponseBuilder() .addCardsV2(cardWithId) .setText('Example text') .build();
เมธอด
วิธีการ | ประเภทการแสดงผล | รายละเอียดแบบย่อ |
---|---|---|
add | Chat | ตั้งค่าช่องการ์ดของข้อความ |
build() | Chat | สร้างการตอบสนองการดําเนินการปัจจุบันและตรวจสอบ |
set | Chat | ตั้งค่าช่องการตอบกลับการดำเนินการของข้อความ |
set | Chat | ตั้งค่าข้อความของข้อความ Chat |
เอกสารประกอบโดยละเอียด
add Cards V2(cardWithId)
ตั้งค่าช่องการ์ดของข้อความ ใช้เพื่อส่งการ์ดในข้อความ Google Chat การ์ดแต่ละใบจะเชื่อมโยงกับรหัสที่ไม่ซ้ำกัน คุณควรสร้างออบเจ็กต์ Card
และใช้กับเมธอดนี้
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); const chatResponse = CardService.newChatResponseBuilder().addCardsV2(cardWithId).build();
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
card | Card | Card ที่จะใช้ |
รีเทิร์น
Chat
— ออบเจ็กต์นี้สําหรับการต่อเชื่อม
build()
set Action Response(actionResponse)
ตั้งค่าช่องการตอบกลับการดำเนินการของข้อความ
// Build the card. const card = CardService.newCardBuilder() .setHeader(CardService.newCardHeader().setTitle('card title')) .build(); // Creates the dialog. const dialog = CardService.newDialog().setBody(card); // Creates the dialog action. const dialogAction = CardService.newDialogAction().setDialog(dialog); // Creates the action response and sets the type to DIALOG. const actionResponse = CardService.newChatActionResponse() .setDialogAction(dialogAction) .setResponseType(CardService.Type.DIALOG); // Creates the Chat response and sets the action response. const chatResponse = CardService.newChatResponseBuilder() .setActionResponse(actionResponse) .build();
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
action | Chat | Chat ที่จะใช้ |
รีเทิร์น
Chat
— ออบเจ็กต์นี้สําหรับการต่อเชื่อม
set Text(text)
ตั้งค่าข้อความของข้อความ Chat
const chatResponse = CardService.newChatResponseBuilder().setText('Example text').build();
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
text | String | ข้อความที่จะใช้ |
รีเทิร์น
Chat
— ออบเจ็กต์นี้สําหรับการต่อเชื่อม