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.
const suggestionsResponse = CardService.newSuggestionsResponseBuilder()
.setSuggestions(
CardService.newSuggestions()
.addSuggestion('First suggestion')
.addSuggestion('Second suggestion'),
)
.build();
Methods
Method | Return type | Brief description |
printJson() | 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
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-31 UTC.
[null,null,["Last updated 2024-10-31 UTC."],[[["`SuggestionsResponse` objects, used with `TextInput` widgets for autocomplete, facilitate suggestions within Google Workspace Add-ons and Google Chat apps."],["Developers can leverage the `SuggestionsResponseBuilder` to construct a response containing suggestions using methods like `setSuggestions` and `addSuggestion`."],["For debugging purposes, the `printJson()` method outputs the JSON structure of the `SuggestionsResponse` object."]]],[]]