Class SuggestionsResponse

候補レスポンス

候補のコールバック関数から返すことができるレスポンス オブジェクト。これは、オートコンプリートを実装する TextInput ウィジェットで使用されます。

Google Workspace アドオンと Google Chat アプリで利用できます。

const suggestionsResponse = CardService.newSuggestionsResponseBuilder()
                                .setSuggestions(
                                    CardService.newSuggestions()
                                        .addSuggestion('First suggestion')
                                        .addSuggestion('Second suggestion'),
                                    )
                                .build();

メソッド

メソッド戻り値の型概要
printJson()Stringこのオブジェクトの JSON 表現を出力します。

詳細なドキュメント

printJson()

このオブジェクトの JSON 表現を出力します。これはデバッグ専用です。

戻る

String