Interface for data objects that have human-readable names.
export class MyData implements IStringIdentifiable, INamed { public id: string; public name: string; public field1: string; public field2: number; ... }
The object's humand-readable name.
Generated using TypeDoc
Interface for data objects that have human-readable names.
Example
export class MyData implements IStringIdentifiable, INamed { public id: string; public name: string; public field1: string; public field2: number; ... }