เครื่องมือสร้างสำหรับ ChatResponse
ออบเจ็กต์
ใช้ได้กับแอป 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();
เมธอด
วิธีการ | ประเภทการแสดงผล | รายละเอียดแบบย่อ |
---|---|---|
addCardsV2(cardWithId) | ChatResponseBuilder | ตั้งค่าช่องการ์ดของข้อความ |
build() | ChatResponse | สร้างการตอบสนองการดำเนินการปัจจุบันและตรวจสอบความถูกต้อง |
setActionResponse(actionResponse) | ChatResponseBuilder | ตั้งค่าช่องตอบกลับการดำเนินการของข้อความ |
setText(text) | ChatResponseBuilder | ตั้งค่าเนื้อหาของข้อความแชท |
เอกสารโดยละเอียด
addCardsV2(cardWithId)
ตั้งค่าช่องการ์ดของข้อความ ซึ่งใช้เพื่อส่งการ์ดในข้อความ Google Chat ชิ้น
การ์ดเชื่อมโยงกับรหัสที่ไม่ซ้ำกัน ควรสร้างออบเจ็กต์ CardWithId
และใช้กับ
ด้วยวิธีนี้
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();
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
cardWithId | CardWithId | CardWithId ที่จะใช้ |
รีเทิร์น
ChatResponseBuilder
— ออบเจ็กต์นี้สำหรับการทำห่วงโซ่
build()
สร้างการตอบสนองการดำเนินการปัจจุบันและตรวจสอบความถูกต้อง
รีเทิร์น
ChatResponse
— ChatResponse ที่ตรวจสอบแล้ว
setActionResponse(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();
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
actionResponse | ChatActionResponse | ChatActionResponse ที่จะใช้ |
รีเทิร์น
ChatResponseBuilder
— ออบเจ็กต์นี้สำหรับการทำห่วงโซ่
setText(text)
ตั้งค่าเนื้อหาของข้อความแชท
const chatResponse = CardService.newChatResponseBuilder() .setText('Example text') .build();
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
text | String | ข้อความที่จะใช้ |
รีเทิร์น
ChatResponseBuilder
— ออบเจ็กต์นี้สำหรับการทำห่วงโซ่