Kreator CardWithId
obiektów. Ta klasa jest unikalnym identyfikatorem karty w
podczas wysyłania wielu kart.
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() .setHeader(CardService.newCardHeader().setTitle('Card title')) .addSection(cardSection) .build(); const cardWithId = CardService.newCardWithId() .setCardId('card_id') .setCard(card);
Metody
Metoda | Zwracany typ | Krótki opis |
---|---|---|
setCard(card) | CardWithId | Ustawia kartę urządzenia cardWithId . |
setCardId(id) | CardWithId | Ustawia unikalny identyfikator karty cardWithId . |
Szczegółowa dokumentacja
setCard(card)
Ustawia kartę urządzenia cardWithId
.
const cardHeader = CardService.newCardHeader() .setTitle('Card Header Title') .setSubtitle('Card Header Subtitle'); const card = CardService.newCardBuilder() .setHeader(cardHeader) .build(); const cardWithId = CardService.newCardWithId() .setCard(card);
Parametry
Nazwa | Typ | Opis |
---|---|---|
card | Card | Card , którego chcesz użyć. |
Powrót
CardWithId
– obiekt do tworzenia łańcuchów.
setCardId(id)
Ustawia unikalny identyfikator karty cardWithId
.
const cardWithId = CardService.newCardWithId(); // Sets the card ID of the cardWithId. cardWithId.setCardId('card_id');
Parametry
Nazwa | Typ | Opis |
---|---|---|
id | String | Tekst do użycia. |
Powrót
CardWithId
– obiekt do tworzenia łańcuchów.