Class Suggestions

建議

自動完成建議,用於補充 TextInput 小工具。

適用於 Google Workspace 外掛程式和 Google Chat 應用程式。

const textInput = CardService.newTextInput().setSuggestions(
    CardService.newSuggestions()
        .addSuggestion('First suggestion')
        .addSuggestion('Second suggestion'),
);

方法

方法傳回類型簡短說明
addSuggestion(suggestion)Suggestions新增文字建議。
addSuggestions(suggestions)Suggestions新增文字建議清單。

內容詳盡的說明文件

addSuggestion(suggestion)

新增文字建議。

參數

名稱類型說明
suggestionString建議文字。

回攻員

Suggestions:這個物件用於鏈結。


addSuggestions(suggestions)

新增文字建議清單。

參數

名稱類型說明
suggestionsObject[]字串建議陣列。

回攻員

Suggestions:這個物件用於鏈結。