Class PlatformDataSource

PlatformDataSource

לווידג'ט של SelectionInput שנעשה בו שימוש בתפריט עם בחירה מרובה, מקור נתונים מ-Google סביבת עבודה. משמש לאכלוס פריטים בתפריט של בחירה מרובה.

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.

שיטות

שיטהסוג הערך המוחזרתיאור קצר
setCommonDataSource(commonDataSource)PlatformDataSourceמגדיר את מקור הנתונים מ-Google Workspace.
setHostAppDataSource(hostAppDataSource)PlatformDataSourceמשמשת לאכלוס מרחבים בתפריט 'בחירה מרובה'.

מסמכי תיעוד מפורטים

setCommonDataSource(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);
האפשרות הזו זמינה רק באפליקציות של Google Chat. לא זמינה לתוספים ל-Google Workspace.

פרמטרים

שםסוגתיאור
commonDataSourceCommonDataSourceמקור הנתונים שיש להגדיר

חזרה

PlatformDataSource – האובייקט הזה, לשרשור.


setHostAppDataSource(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);
האפשרות הזו זמינה רק באפליקציות של Google Chat. לא זמינה לתוספים ל-Google Workspace.

פרמטרים

שםסוגתיאור
hostAppDataSourceHostAppDataSourceמקור הנתונים שיש להגדיר

חזרה

PlatformDataSource – האובייקט הזה, לשרשור.