Interface for data objects that can track their changes, including logical deletion.
IChangeable
export class MyData implements IStringIdentifiable, ITrackable { public id: string; public field1: string; public field2: number; ... public change_time: Date; public create_time: Date; public deleted: boolean; }
The UTC time at which the object was last changed (created, updated, or deleted).
The UTC time at which the object was created.
The logical deletion flag. True when object is deleted and null or false otherwise
Generated using TypeDoc
Interface for data objects that can track their changes, including logical deletion.
IChangeable
Example
export class MyData implements IStringIdentifiable, ITrackable { public id: string; public field1: string; public field2: number; ... public change_time: Date; public create_time: Date; public deleted: boolean; }