Class Card

Card

A context card that represents a single view in the UI.

const cardSection = CardService.newCardSection(); // Finish building the card section ...  const card = 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