Kreator ChatResponse
obiektów.
Dostępne tylko w aplikacjach Google Chat. Opcja niedostępna w przypadku dodatków do 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();
Metody
Metoda | Zwracany typ | Krótki opis |
---|---|---|
addCardsV2(cardWithId) | ChatResponseBuilder | Określa pole karty w wiadomości. |
build() | ChatResponse | Kompiluje bieżącą odpowiedź dotyczącą działania i weryfikuje ją. |
setActionResponse(actionResponse) | ChatResponseBuilder | Określa pole odpowiedzi na działanie wiadomości. |
setText(text) | ChatResponseBuilder | Ustawia tekst wiadomości Google Chat. |
Szczegółowa dokumentacja
addCardsV2(cardWithId)
Określa pole karty w wiadomości. Służą one do wysyłania kart w wiadomości w Google Chat. Każdy
Karta jest powiązana z unikalnym identyfikatorem, obiekt CardWithId
powinien być skompilowany i używany z
tę metodę.
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();
Parametry
Nazwa | Typ | Opis |
---|---|---|
cardWithId | CardWithId | CardWithId , którego chcesz użyć. |
Powrót
ChatResponseBuilder
– obiekt do tworzenia łańcuchów.
build()
Kompiluje bieżącą odpowiedź dotyczącą działania i weryfikuje ją.
Powrót
ChatResponse
– zweryfikowana odpowiedź z czatu.
setActionResponse(actionResponse)
Określa pole odpowiedzi na działanie wiadomości.
// 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();
Parametry
Nazwa | Typ | Opis |
---|---|---|
actionResponse | ChatActionResponse | ChatActionResponse , którego chcesz użyć. |
Powrót
ChatResponseBuilder
– obiekt do tworzenia łańcuchów.
setText(text)
Ustawia tekst wiadomości Google Chat.
const chatResponse = CardService.newChatResponseBuilder() .setText('Example text') .build();
Parametry
Nazwa | Typ | Opis |
---|---|---|
text | String | Tekst do użycia. |
Powrót
ChatResponseBuilder
– obiekt do tworzenia łańcuchów.