Un builder per CardWithId
oggetti. Questa classe è un identificatore univoco di una scheda in una
quando invii più schede.
Disponibile solo per le app Google Chat. Non disponibile per i componenti aggiuntivi di 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);
Metodi
Metodo | Tipo restituito | Breve descrizione |
---|---|---|
setCard(card) | CardWithId | Imposta la scheda di cardWithId . |
setCardId(id) | CardWithId | Consente di impostare l'ID carta univoco di cardWithId . |
Documentazione dettagliata
setCard(card)
Imposta la scheda di 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);
Parametri
Nome | Tipo | Descrizione |
---|---|---|
card | Card | Card da utilizzare. |
Invio
CardWithId
: oggetto per il collegamento.
setCardId(id)
Consente di impostare l'ID carta univoco di cardWithId
.
const cardWithId = CardService.newCardWithId(); // Sets the card ID of the cardWithId. cardWithId.setCardId('card_id');
Parametri
Nome | Tipo | Descrizione |
---|---|---|
id | String | Il testo da utilizzare. |
Invio
CardWithId
: oggetto per il collegamento.