Chat Accessory 物件的建構工具。
配件小工具是顯示在訊息底部的互動式小工具。
適用於擴充 Google Chat 的 Google Workspace 外掛程式。
const widget = CardService.newButtonSet() .addButton(CardService.newImageButton() .setIcon(CardService.Icon.PHONE) .setOnClickAction(CardService.newAction() .setFunctionName("phone"))) .addButton(CardService.newTextButton() .setText("Robot") .setIconUrl("https://developers.google.com/chat/images/quickstart-app-avatar.png") .setOnClickAction(CardService.newAction() .setFunctionName("robot"))); const accessoryWidget = AddOnsResponseService.newAccessoryWidget() .addWidget(widget);
方法
| 方法 | 傳回類型 | 簡短說明 |
|---|---|---|
add | Accessory | 為這項動作設定小工具。 |