Un compilador para objetos CardWithId
. Esta clase es un identificador único de una tarjeta en una
si envías varias tarjetas.
Solo está disponible para las apps de Google Chat. No está disponible para los complementos de 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);
Métodos
Método | Tipo de datos que se muestra | Descripción breve |
---|---|---|
setCard(card) | CardWithId | Establece la tarjeta del cardWithId . |
setCardId(id) | CardWithId | Establece el ID de tarjeta único de cardWithId . |
Documentación detallada
setCard(card)
Establece la tarjeta 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);
Parámetros
Nombre | Tipo | Descripción |
---|---|---|
card | Card | El Card que se debe usar. |
Volver
CardWithId
: Este objeto para el encadenamiento.
setCardId(id)
Establece el ID de tarjeta único de cardWithId
.
const cardWithId = CardService.newCardWithId(); // Sets the card ID of the cardWithId. cardWithId.setCardId('card_id');
Parámetros
Nombre | Tipo | Descripción |
---|---|---|
id | String | El texto que se usará. |
Volver
CardWithId
: Este objeto para el encadenamiento.