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 | 設定 Chat 訊息的文字。 |
內容詳盡的說明文件
addCardsV2(cardWithId)
設定訊息的資訊卡欄位。這會用於透過 Google Chat 訊息傳送卡片。每項
卡片已與專屬 ID 建立關聯,建立 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()
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)
設定 Chat 訊息的文字。
const chatResponse = CardService.newChatResponseBuilder() .setText('Example text') .build();
參數
名稱 | 類型 | 說明 |
---|---|---|
text | String | 要使用的文字。 |
回攻員
ChatResponseBuilder
:這個物件用於鏈結。