Class Card

  • A Card is a UI view in the Gmail add-ons context.

  • Cards are built using the CardService.newCardBuilder() method.

  • Cards can have sections added to them using addSection().

  • The printJson() method is available for debugging the JSON representation of the Card object.

Card

A contextcard that represents a single view in theUI.

constcardSection=CardService.newCardSection();// Finish building the card section ...constcard=CardService.newCardBuilder().setName('Card name').setHeader(CardService.newCardHeader().setTitle('Card title')).addSection(cardSection).build();

Methods

MethodReturn typeBrief description
printJson()StringPrints the JSON representation of this object.

Detailed documentation

printJson()

Prints the JSON representation of this object. This is for debugging only.

Return

String

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-03 UTC.