Class SuggestionsResponse

SuggestionsResponse

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

Available for Google Workspace Add-ons and Google Chat apps.

var suggestionsResponse = CardService.newSuggestionsResponseBuilder()
    .setSuggestions(CardService.newSuggestions()
        .addSuggestion("First suggestion")
        .addSuggestion("Second suggestion"))
        .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