Describing the metadata present in all the nodes of a project.

interface IOrderMetadata {
    description: string;
    endDate: string;
    estimateCost: string;
    estimateTime: string;
    external: ExternalDigitalPlatform;
    path: string[];
    ref_extern: string;
    startDate: string;
    status: string;
    shema(): Record<string, any>;
}

Hierarchy (View Summary)

Implemented by

Properties

description: string

node_description

endDate: string

order_endDate

estimateCost: string

order_estCost

estimateTime: string

order_estTime

path: string[]
ref_extern: string

DBXXX

startDate: string

order_startDate

status: string

order_status

Methods