Bei einem SelectionInput
-Widget mit Mehrfachauswahl-Menü: eine Datenquelle aus einer Google-
Workspace-Anwendung. Die Datenquelle füllt die Auswahlelemente für das Mehrfachauswahl-Menü mit Daten.
const chatSpaceDataSource = CardService.newChatSpaceDataSource() .setDefaultToCurrentSpace(true); const chatClientDataSource = CardService.newChatClientDataSource() .setSpaceDataSource(chatSpaceDataSource); const hostAppDataSource = CardService.newHostAppDataSource() .setChatDataSource(chatClientDataSource);
Nur für Google Chat-Apps verfügbar. Nicht verfügbar für Google Workspace-Add-ons.
Methoden
Methode | Rückgabetyp | Kurzbeschreibung |
---|---|---|
setChatDataSource(chatClientDataSource) | HostAppDataSource | Legt die Datenquelle aus Google Chat fest. |
Detaillierte Dokumentation
setChatDataSource(chatClientDataSource)
Legt die Datenquelle aus Google Chat fest.
const chatSpaceDataSource = CardService.newChatSpaceDataSource() .setDefaultToCurrentSpace(true); const chatClientDataSource = CardService.newChatClientDataSource() .setSpaceDataSource(chatSpaceDataSource); const hostAppDataSource = CardService.newHostAppDataSource() .setChatDataSource(chatClientDataSource);Nur für Google Chat-Apps verfügbar. Nicht verfügbar für Google Workspace-Add-ons.
Parameter
Name | Typ | Beschreibung |
---|---|---|
chatClientDataSource | ChatClientDataSource | Die Datenquelle, die festgelegt werden soll. |
Rückflug
HostAppDataSource
: Dieses Objekt zur Verkettung.