Class CardWithId

CartaConId

Un generatore di oggetti CardWithId. Questa classe è un identificatore univoco per una scheda in un messaggio quando vengono inviate 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

MetodoTipo restituitoBreve descrizione
setCard(card)CardWithIdImposta la scheda del cardWithId.
setCardId(id)CardWithIdImposta l'ID carta univoco del cardWithId.

Documentazione dettagliata

setCard(card)

Imposta la scheda del 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

NomeTipoDescrizione
cardCardIl Card da utilizzare.

Invio

CardWithId: questo oggetto, per l'accodamento.


setCardId(id)

Imposta l'ID carta univoco del cardWithId.

const cardWithId = CardService.newCardWithId();

// Sets the card ID of the cardWithId.
cardWithId.setCardId('card_id');

Parametri

NomeTipoDescrizione
idStringIl testo da utilizzare.

Invio

CardWithId: questo oggetto, per l'accodamento.