Chat
对象的构建器。
仅适用于 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();
方法
方法 | 返回类型 | 简介 |
---|---|---|
add | Chat | 设置消息的卡片字段。 |
build() | Chat | 构建当前操作响应并对其进行验证。 |
set | Chat | 设置消息的操作响应字段。 |
set | Chat | 设置聊天消息的文本。 |
详细文档
add Cards V2(cardWithId)
设置消息的卡片字段。用于在 Google Chat 消息中发送卡片。每张卡片都与一个唯一 ID 相关联,应构建 Card
对象并与此方法搭配使用。
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();
参数
名称 | 类型 | 说明 |
---|---|---|
card | Card | 要使用的 Card 。 |
返回
Chat
- 此对象,用于链式调用。
build()
set Action Response(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();
参数
名称 | 类型 | 说明 |
---|---|---|
action | Chat | 要使用的 Chat 。 |
返回
Chat
- 此对象,用于链式调用。
set Text(text)
设置聊天消息的文本。
const chatResponse = CardService.newChatResponseBuilder().setText('Example text').build();
参数
名称 | 类型 | 说明 |
---|---|---|
text | String | 要使用的文本。 |
返回
Chat
- 此对象,用于链式调用。