Um builder para objetos CardWithId
. Esta classe é um identificador exclusivo de um cartão em um
ao enviar vários cartões.
Disponível apenas nos apps do Google Chat. Não disponível para complementos 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);
Métodos
Método | Tipo de retorno | Breve descrição |
---|---|---|
setCard(card) | CardWithId | Define o card do cardWithId . |
setCardId(id) | CardWithId | Define o ID exclusivo do cartão do cardWithId . |
Documentação detalhada
setCard(card)
Define o card do 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
Nome | Tipo | Descrição |
---|---|---|
card | Card | O Card a ser usado. |
Retornar
CardWithId
: este objeto, para encadeamento.
setCardId(id)
Define o ID exclusivo do cartão do cardWithId
.
const cardWithId = CardService.newCardWithId(); // Sets the card ID of the cardWithId. cardWithId.setCardId('card_id');
Parâmetros
Nome | Tipo | Descrição |
---|---|---|
id | String | O texto a ser usado. |
Retornar
CardWithId
: este objeto, para encadeamento.