mirror of
https://github.com/FlipsideCrypto/databricks-sdk-golang.git
synced 2026-02-06 10:57:34 +00:00
10 lines
160 B
Go
10 lines
160 B
Go
package models
|
|
|
|
type ViewsToExport string
|
|
|
|
const (
|
|
ViewsToExportCode = "CODE"
|
|
ViewsToExportDashboards = "DASHBOARDS"
|
|
ViewsToExportAll = "ALL"
|
|
)
|