Entity db entity

interface Entity {
    createdBy?: string;
    createdDate?: Date;
    currencyIsoCode?: string;
    custom?: boolean;
    id?: string;
    installedPackage?: string;
    lastModifiedBy?: string;
    lastModifiedDate?: Date;
    name?: string;
    owner?: string;
}

Hierarchy (view full)

Properties

createdBy?: string
createdDate?: Date
currencyIsoCode?: string
custom?: boolean
id?: string
installedPackage?: string
lastModifiedBy?: string
lastModifiedDate?: Date
name?: string
owner?: string