AI-generated Key Takeaways
-
SuggestionsResponse is a response object used with TextInput widgets that implement autocomplete in Google Workspace add-ons and Google Chat apps.
-
It can be created using
CardService.newSuggestionsResponseBuilder()
and allows adding multiple suggestions viaCardService.newSuggestions().addSuggestion()
. -
The
printJson()
method is available for debugging and prints the JSON representation of the object as a string.
A response object that can be returned from a suggestions callback function. This is used with Text
widgets that implement autocomplete.
Available for Google Workspace add-ons and Google Chat apps.
const suggestionsResponse = CardService.newSuggestionsResponseBuilder() .setSuggestions( CardService.newSuggestions() .addSuggestion('First suggestion') .addSuggestion('Second suggestion'), ) .build();
Methods
Method | Return type | Brief description |
---|---|---|
print | String | Prints the JSON representation of this object. |
Detailed documentation
printJson()
Prints the JSON representation of this object. This is for debugging only.
Return
String