Google Apps Script API
    Preparing search index...

    Autocomplete suggestions to supplement a TextInput widget.

    var textInput = CardService.newTextInput()
        .setSuggestions(CardService.newSuggestions()
            .addSuggestion("First suggestion")
            .addSuggestion("Second suggestion"))
    
    interface Suggestions {
        addSuggestion(suggestion: string): Suggestions;
        addSuggestions(suggestions: string[]): Suggestions;
    }
    Index

    Methods