Class SuggestionsResponse

  • 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 usingCardService.newSuggestionsResponseBuilder() and allows adding multiple suggestions viaCardService.newSuggestions().addSuggestion().

  • TheprintJson() method is available for debugging and prints the JSON representation of the object as a string.

SuggestionsResponse

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

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

constsuggestionsResponse=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

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-03 UTC.