Trình tạo cho các đối tượng Chat
.
Chỉ dành cho ứng dụng Google Chat. Không dùng được cho các tiện ích bổ sung của 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();
Phương thức
Phương thức | Loại dữ liệu trả về | Mô tả ngắn |
---|---|---|
add | Chat | Đặt trường thẻ của thông báo. |
build() | Chat | Tạo và xác thực phản hồi hành động hiện tại. |
set | Chat | Đặt trường phản hồi hành động của thông báo. |
set | Chat | Đặt văn bản của tin nhắn trong Chat. |
Tài liệu chi tiết
add Cards V2(cardWithId)
Đặt trường thẻ của thông báo. Phương thức này dùng để gửi thẻ trong tin nhắn trên Google Chat. Mỗi thẻ được liên kết với một mã nhận dạng duy nhất, đối tượng Card
phải được tạo và sử dụng với phương thức này.
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();
Tham số
Tên | Loại | Mô tả |
---|---|---|
card | Card | Card cần sử dụng. |
Cầu thủ trả bóng
Chat
– Đối tượng này, để tạo chuỗi.
build()
Tạo và xác thực phản hồi hành động hiện tại.
Cầu thủ trả bóng
Chat
– Một ChatResponse đã được xác thực.
set Action Response(actionResponse)
Đặt trường phản hồi hành động của thông báo.
// 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();
Tham số
Tên | Loại | Mô tả |
---|---|---|
action | Chat | Chat cần sử dụng. |
Cầu thủ trả bóng
Chat
– Đối tượng này, để tạo chuỗi.
set Text(text)
Đặt văn bản của tin nhắn trong Chat.
const chatResponse = CardService.newChatResponseBuilder().setText('Example text').build();
Tham số
Tên | Loại | Mô tả |
---|---|---|
text | String | Văn bản cần sử dụng. |
Cầu thủ trả bóng
Chat
– Đối tượng này, để tạo chuỗi.