Class ChatResponse

Czat – odpowiedź

Obiekt odpowiedzi na wiadomość z kartą w Google Chat.

Dostępne tylko w przypadku aplikacji Google Chat. Niedostępne w przypadku dodatków Google Workspace.

// Creates a card message in Chat.
const cardHeader = CardService.newCardHeader()
                       .setTitle('Card Header Title')
                       .setSubtitle('Card Header Subtitle');

const card = CardService.newCardBuilder().setHeader(cardHeader).build();

const chatResponse =
    CardService.newChatResponseBuilder()
        .setText('Example text')
        .addCardsV2(
            CardService.newCardWithId().setCardId('card_id').setCard(card))
        .build();

console.log(chatResponse.printJson());

Metody

MetodaZwracany typKrótki opis
printJson()StringWypisuje reprezentację obiektu w formacie JSON.

Szczegółowa dokumentacja

printJson()

Wypisuje reprezentację obiektu w formacie JSON. Jest to tylko funkcja debugowania.

Powrót

String