Class ChatResponseBuilder

ChatResponseBuilder

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

MetodaZwracany typKrótki opis
addCardsV2(cardWithId)ChatResponseBuilderOkreśla pole karty w wiadomości.
build()ChatResponseKompiluje bieżącą odpowiedź dotyczącą działania i weryfikuje ją.
setActionResponse(actionResponse)ChatResponseBuilderOkreśla pole odpowiedzi na działanie wiadomości.
setText(text)ChatResponseBuilderUstawia 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

NazwaTypOpis
cardWithIdCardWithIdCardWithId, 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

NazwaTypOpis
actionResponseChatActionResponseChatActionResponse, 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

NazwaTypOpis
textStringTekst do użycia.

Powrót

ChatResponseBuilder – obiekt do tworzenia łańcuchów.