Google Apps Script API
    Preparing search index...

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

    var cardSection = CardService.newCardSection();
    // Finish building the card section ...
    
    var card = CardService.newCardBuilder()
        .setName("Card name")
        .setHeader(CardService.newCardHeader().setTitle("Card title"))
        .addSection(cardSection)
        .build();
    
    interface Card {
        printJson(): string;
    }
    Index

    Methods

    Methods