[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-02 UTC."],[[["\u003cp\u003e\u003ccode\u003eDataSourceType\u003c/code\u003e is used to specify the type of data source used within Google Apps Script.\u003c/p\u003e\n"],["\u003cp\u003eThe enum includes options for unsupported data sources, BigQuery, and Looker.\u003c/p\u003e\n"],["\u003cp\u003eTo reference a specific data source type, use the syntax: \u003ccode\u003eSpreadsheetApp.DataSourceType.[DataSourceType]\u003c/code\u003e.\u003c/p\u003e\n"]]],["The document defines `DataSourceType`, an enumeration of data source types used in Apps Script. It lists three properties: `DATA_SOURCE_TYPE_UNSUPPORTED` (a type not supported), `BIGQUERY` (a BigQuery data source), and `LOOKER` (a Looker data source). To use an enum, you must call it through its parent class, for example: `SpreadsheetApp.DataSourceType.BIGQUERY`. The property's `type` is `Enum`, and a short description is given for each property.\n"],null,["DataSourceType\n\nAn enumeration of data source types.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nSpreadsheetApp.DataSourceType.BIGQUERY`. \n\nProperties\n\n| Property | Type | Description |\n|--------------------------------|--------|----------------------------------------------------------|\n| `DATA_SOURCE_TYPE_UNSUPPORTED` | `Enum` | A data source type that is not supported in Apps Script. |\n| `BIGQUERY` | `Enum` | A BigQuery data source. |\n| `LOOKER` | `Enum` | A Looker data source. |"]]