マルチ選択メニューを使用する Selection
ウィジェットの場合は、Google Workspace のデータソース。複数選択メニューの項目に入力するために使用します。
const platformDataSource = CardService.newPlatformDataSource().setCommonDataSource( CardService.CommonDataSource.USER, ); const multiSelect = CardService.newSelectionInput() .setType(CardService.SelectionInputType.MULTI_SELECT) .setFieldName('contacts') .setTitle('Selected contacts') .setMultiSelectMaxSelectedItems(5) .setMultiSelectMinQueryLength(1) .setPlatformDataSource(platformDataSource);
Google Chat アプリでのみ使用できます。Google Workspace アドオンには対応していません。
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
set | Platform | Google Workspace からデータソースを設定します。 |
set | Platform | 複数選択メニューのスペースに入力するために使用されます。 |
詳細なドキュメント
set Common Data Source(commonDataSource)
Google Workspace のデータソースを設定します。
const platformDataSource = CardService.newPlatformDataSource().setCommonDataSource( CardService.CommonDataSource.USER, ); const multiSelect = CardService.newSelectionInput() .setType(CardService.SelectionInputType.MULTI_SELECT) .setFieldName('contacts') .setTitle('Selected contacts') .setMultiSelectMaxSelectedItems(5) .setMultiSelectMinQueryLength(1) .setPlatformDataSource(platformDataSource);
パラメータ
名前 | 型 | 説明 |
---|---|---|
common | Common | 設定するデータソース。 |
戻る
Platform
- チェーン用のこのオブジェクト。
set Host App Data Source(hostAppDataSource)
複数選択メニューのスペースに入力するために使用されます。
const chatSpaceDataSource = CardService.newChatSpaceDataSource().setDefaultToCurrentSpace(true); const chatClientDataSource = CardService.newChatClientDataSource().setSpaceDataSource( chatSpaceDataSource); const hostAppDataSource = CardService.newHostAppDataSource().setChatDataSource(chatClientDataSource); const platformDataSource = CardService.newPlatformDataSource().setHostAppDataSource(hostAppDataSource); const multiSelect = CardService.newSelectionInput() .setType(CardService.SelectionInputType.MULTI_SELECT) .setFieldName('contacts') .setTitle('Selected contacts') .setMultiSelectMaxSelectedItems(5) .setMultiSelectMinQueryLength(1) .setPlatformDataSource(platformDataSource);
パラメータ
名前 | 型 | 説明 |
---|---|---|
host | Host | 設定するデータソース。 |
戻る
Platform
- チェーン用のこのオブジェクト。