Google Apps Script API
    Preparing search index...

    A response object that can be returned from a suggestions callback function. This is used with TextInput widgets that implement autocomplete.

    var suggestionsResponse = CardService.newSuggestionsResponseBuilder()
        .setSuggestions(CardService.newSuggestions()
            .addSuggestion("First suggestion")
            .addSuggestion("Second suggestion"))
            .build();
    
    interface SuggestionsResponse {
        printJson(): string;
    }
    Index

    Methods

    Methods