libs/sensorml/src/lib/model/swe/SweNilValue.ts
Properties |
Methods |
reason |
Type : string
|
Decorators :
@DisplayName('Reason')
|
value |
Type : string
|
Decorators :
@DisplayName('Value')
|
toString |
toString()
|
Returns :
string
|
import { DisplayName } from '../../common/decorators/DisplayName';
export class SweNilValue {
@DisplayName('Value')
value: string;
@DisplayName('Reason')
reason: string;
toString() {
return 'SWE nil value';
}
}