Type Alias SenseDataTemplate

type SenseDataTemplate = {
    appId: string;
    exportOptions?: ExportDataOptions;
    id: string;
    patches?: NxPatch[];
    persistentBookmark?: SensePersistentBookmark;
    reloadTimestampMatchType?: ReloadTimestampMatchType;
    selectionsByState?: Record<string, QSelection[]>;
    selectionStrategy?: SelectionStrategy;
    selectionType?: SenseSelectionType;
    temporaryBookmarkV2?: SenseTemporaryBookmarkV2;
    variables?: unknown[];
}
Index

Properties

appId: string
exportOptions?: ExportDataOptions
id: string

Sense visualization id. Visualizations created "on the fly" are not supported.

patches?: NxPatch[]
persistentBookmark?: SensePersistentBookmark
reloadTimestampMatchType?: ReloadTimestampMatchType

Choose the reloadTimestamp constraint to apply. An empty value leads to the default noCheck.

selectionsByState?: Record<string, QSelection[]>

Map of selections to apply by state. Maximum number of states allowed is 125. Maximum number of fields allowed is 125 and maximum number of overall field values allowed is 150000.

selectionStrategy?: SelectionStrategy
selectionType?: SenseSelectionType
temporaryBookmarkV2?: SenseTemporaryBookmarkV2

The temporary bookmark to apply. Patches and Variables are ignored if passed to the API, because they already are applied in the backend.

variables?: unknown[]