ออบเจ็กต์การตอบกลับที่อาจแสดงผลจากฟังก์ชันการเรียกกลับ (เช่น แฮนเดิลการตอบกลับแบบฟอร์ม) เพื่อดําเนินการอย่างน้อย 1 อย่างในไคลเอ็นต์ ระบบไม่รองรับการผสมผสานการดำเนินการบางรายการ
// An action that opens a link const actionResponse = CardService.newActionResponseBuilder() .setOpenLink(CardService.newOpenLink().setUrl('https://www.google.com')) .build(); // An action that shows a notification. const notificationActionResponse = CardService.newActionResponseBuilder() .setNotification( CardService.newNotification().setText( 'Some info to display to user'), ) .build(); // An action that shows an additional card. It also sets a flag to indicate that // the original state data has changed. const cardBuilder = CardService.newCardBuilder(); // Build card ... const navigationActionResponse = CardService.newActionResponseBuilder() .setNavigation(CardService.newNavigation().pushCard( cardBuilder.build())) .setStateChanged(true) .build();
เมธอด
วิธีการ | ประเภทการแสดงผล | รายละเอียดแบบย่อ |
---|---|---|
print | String | พิมพ์การแสดง JSON ของออบเจ็กต์นี้ |
เอกสารประกอบโดยละเอียด
print Json()
พิมพ์การแสดง JSON ของออบเจ็กต์นี้ การดำเนินการนี้มีไว้สำหรับการแก้ไขข้อบกพร่องเท่านั้น
รีเทิร์น
String