libs/sensorml/src/lib/model/sml/AbstractSetting.ts
Properties |
Methods |
ref |
Type : string
|
Decorators :
@DisplayName('Ref')
|
value |
Type : any
|
Decorators :
@DisplayName('Value')
|
toString |
toString()
|
Returns :
string
|
import { DisplayName } from '../../common/decorators/DisplayName';
export abstract class AbstractSetting {
@DisplayName('Value')
value: any;
@DisplayName('Ref')
ref: string;
toString() {
return 'Abstract setting';
}
}