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
Metoda | Zwracany typ | Krótki opis |
---|---|---|
print | String | Wypisuje reprezentację obiektu w formacie JSON. |
Szczegółowa dokumentacja
print Json()
Wypisuje reprezentację obiektu w formacie JSON. Jest to tylko funkcja debugowania.
Powrót
String