Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IChangeable

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;
    ...
}

Hierarchy

Index

Properties

Properties

change_time

change_time: Date

The UTC time at which the object was last changed (created or updated).

Generated using TypeDoc