Interface for data objects that contain their latest change time.
export class MyData implements IStringIdentifiable, IChangeable { public id: string; public field1: string; public field2: number; public change_time: Date; ... }
The UTC time at which the object was last changed (created or updated).
Generated using TypeDoc
Interface for data objects that contain their latest change time.
Example
export class MyData implements IStringIdentifiable, IChangeable { public id: string; public field1: string; public field2: number; public change_time: Date; ... }