Class HostAppDataSource

主機應用程式資料來源

如果是使用多重選取選單的 SelectionInput 小工具,則為 Google Workspace 應用程式的資料來源。資料來源會為多重選取選單填入選項。

const chatSpaceDataSource =
    CardService.newChatSpaceDataSource().setDefaultToCurrentSpace(true);

const chatClientDataSource =
    CardService.newChatClientDataSource().setSpaceDataSource(
        chatSpaceDataSource);

const hostAppDataSource =
    CardService.newHostAppDataSource().setChatDataSource(chatClientDataSource);

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

方法

方法傳回類型簡短說明
setChatDataSource(chatClientDataSource)HostAppDataSource設定 Google Chat 的資料來源。

內容詳盡的說明文件

setChatDataSource(chatClientDataSource)

設定 Google Chat 的資料來源。

const chatSpaceDataSource =
    CardService.newChatSpaceDataSource().setDefaultToCurrentSpace(true);

const chatClientDataSource =
    CardService.newChatClientDataSource().setSpaceDataSource(
        chatSpaceDataSource);

const hostAppDataSource =
    CardService.newHostAppDataSource().setChatDataSource(chatClientDataSource);
僅適用於 Google Chat 應用程式。不適用於 Google Workspace 外掛程式。

參數

名稱類型說明
chatClientDataSourceChatClientDataSource要設定的資料來源。

回攻員

HostAppDataSource:這個物件用於鏈結。