Class CardWithId

CardWithId

Um builder para objetos CardWithId. Essa classe é um identificador exclusivo de um cartão em uma mensagem ao enviar vários cartões.

Disponível apenas para 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étodoTipo de retornoBreve descrição
setCard(card)CardWithIdDefine o cartão do cardWithId.
setCardId(id)CardWithIdDefine o ID exclusivo do cartão da cardWithId.

Documentação detalhada

setCard(card)

Define o cartão 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

NomeTipoDescrição
cardCardO Card a ser usado.

Retornar

CardWithId: este objeto, para encadeamento.


setCardId(id)

Define o ID exclusivo do cartão da cardWithId.

const cardWithId = CardService.newCardWithId();

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

Parâmetros

NomeTipoDescrição
idStringO texto a ser usado.

Retornar

CardWithId: este objeto, para encadeamento.