Class SuggestionsResponse

コレクションでコンテンツを整理 必要に応じて、コンテンツの保存と分類を行います。
SuggestionsResponse

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

var suggestionsResponse = CardService.newSuggestionsResponseBuilder()
    .setSuggestions(CardService.newSuggestions()
        .addSuggestion("First suggestion")
        .addSuggestion("Second suggestion"))
        .build();

Methods

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

詳細なドキュメント

printJson()

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

戻る

String