定義小工具所附加小工具的驗證規則的物件。
適用於 Google Chat 應用程式和 Google Workspace 外掛程式。
const validation = CardService.newValidation() .setCharacterLimit('10') .setType(CardService.InputType.TEXT) .setWeight(400) .setGrade(0);
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
setCharacterLimit(characterLimit) | Validation | 設定小工具的字元限制。 |
setInputType(inputType) | Validation | 設定小工具的輸入類型。 |
內容詳盡的說明文件
setCharacterLimit(characterLimit)
設定小工具的字元限制。
適用於 Google Chat 應用程式和 Google Workspace 外掛程式。
參數
名稱 | 類型 | 說明 |
---|---|---|
characterLimit | Integer | 要設定的字元限制。請注意,這項限制僅適用於
的 TextInput 值,其他小工具則會忽略。 |
回攻員
Validation
:這個物件用於鏈結。
setInputType(inputType)
設定小工具的輸入類型。
適用於 Google Chat 應用程式和 Google Workspace 外掛程式。
參數
名稱 | 類型 | 說明 |
---|---|---|
inputType | InputType | 要設定的 InputType 。 |
回攻員
Validation
:這個物件用於鏈結。