Type Alias DataStore

type DataStore = {
    createdBy?: string;
    createdTime?: string;
    description?: string;
    id?: string;
    lastModifiedBy?: string;
    lastModifiedTime?: string;
    name?: string;
    ownerId?: string;
    properties?: Record<string, unknown>;
    spaceId?: string;
    tags?: string[];
    technicalDescription?: string;
    technicalName: string;
    tenantId?: string;
    type: string;
    uri?: string;
    version?: number;
}
Index

Properties

createdBy?: string

The value is automatically set by the application. User defined value is ignored.

createdTime?: string
description?: string
id?: string
lastModifiedBy?: string
lastModifiedTime?: string
name?: string
ownerId?: string
properties?: Record<string, unknown>
spaceId?: string
tags?: string[]
technicalDescription?: string
technicalName: string
tenantId?: string
type: string
uri?: string
version?: number