Class ChatResponse
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
ChatResponse
Google Chat 中卡片訊息的回應物件。
僅適用於 Google Chat 應用程式。不適用於 Google Workspace 外掛程式。
// Creates a card message in Chat.
const cardHeader = CardService.newCardHeader()
.setTitle('Card Header Title')
.setSubtitle('Card Header Subtitle');
const card = CardService.newCardBuilder().setHeader(cardHeader).build();
const chatResponse =
CardService.newChatResponseBuilder()
.setText('Example text')
.addCardsV2(
CardService.newCardWithId().setCardId('card_id').setCard(card))
.build();
console.log(chatResponse.printJson());
內容詳盡的說明文件
printJson()
列印此物件的 JSON 表示法。這項設定僅供偵錯。
回攻員
String
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-07-26 (世界標準時間)。
[null,null,["上次更新時間:2025-07-26 (世界標準時間)。"],[[["\u003cp\u003e\u003ccode\u003eChatResponse\u003c/code\u003e is an object used for card messages specifically within Google Chat apps, not add-ons.\u003c/p\u003e\n"],["\u003cp\u003eIt facilitates building responses containing text and cards with customizable headers and content using methods like \u003ccode\u003eaddCardsV2()\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can utilize the \u003ccode\u003eprintJson()\u003c/code\u003e method to debug and view the JSON structure of the constructed response for verification.\u003c/p\u003e\n"]]],["The `ChatResponse` object, exclusive to Google Chat apps, facilitates the creation of card messages. It is not for Google Workspace add-ons. You can build card messages using methods like `newCardHeader()` and `newCardBuilder()`. `newChatResponseBuilder()` builds the ChatResponse by adding text and cards. `printJson()` outputs the JSON representation of the constructed `ChatResponse` object, for debugging purposes.\n"],null,["# Class ChatResponse\n\nChatResponse\n\nThe response object for a card message in Google Chat.\n\nOnly available for Google Chat apps. Not available for Google Workspace add-ons.\n\n```javascript\n// Creates a card message in Chat.\nconst cardHeader = CardService.newCardHeader()\n .setTitle('Card Header Title')\n .setSubtitle('Card Header Subtitle');\n\nconst card = CardService.newCardBuilder().setHeader(cardHeader).build();\n\nconst chatResponse =\n CardService.newChatResponseBuilder()\n .setText('Example text')\n .addCardsV2(\n CardService.newCardWithId().setCardId('card_id').setCard(card))\n .build();\n\nconsole.log(chatResponse.printJson());\n``` \n\n### Methods\n\n| Method | Return type | Brief description |\n|-----------------------------|-------------|------------------------------------------------|\n| [printJson()](#printJson()) | `String` | Prints the JSON representation of this object. |\n\nDetailed documentation\n----------------------\n\n### `print``Json()`\n\nPrints the JSON representation of this object. This is for debugging only.\n\n#### Return\n\n\n`String`"]]