Interface SandDataObject

interface SandDataObject {
    archived: boolean;
    attachmentsIndexedForSearch?: boolean;
    createdAt?: Date;
    createdBy?: string;
    dataStoreName?: string;
    deleteTableName?: string;
    fields: DataObjectField[];
    fileCategories?: FileCategory[];
    historyEnabled?: boolean;
    id?: number;
    indexedForSearch?: boolean;
    label?: string;
    lastUpdatedAt?: Date;
    lastUpdatedBy?: string;
    name: string;
    parentName?: string;
    readOnly: boolean;
    relationshipsFrom?: any;
    relationshipsTo?: any;
    requireSearchBeforeCreate?: boolean;
    resolvedEntity?: boolean;
    systemReserved: boolean;
    tableName?: string;
    type?: string;
    version?: number;
}

Hierarchy (view full)

Properties

archived: boolean
attachmentsIndexedForSearch?: boolean
createdAt?: Date
createdBy?: string
dataStoreName?: string
deleteTableName?: string
fields: DataObjectField[]
fileCategories?: FileCategory[]
historyEnabled?: boolean
id?: number
indexedForSearch?: boolean
label?: string
lastUpdatedAt?: Date
lastUpdatedBy?: string
name: string
parentName?: string
readOnly: boolean
relationshipsFrom?: any
relationshipsTo?: any
requireSearchBeforeCreate?: boolean
resolvedEntity?: boolean
systemReserved: boolean
tableName?: string
type?: string
version?: number