UNPKG

@dasch-swiss/dsp-js

Version:
23 lines 784 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { Constants } from '../../../Constants'; import { DateTimeStampConverter } from '../../../custom-converters/date-time-stamp-converter'; import { ReadValue } from './read-value'; /** * @category Model V2 */ let ReadTimeValue = class ReadTimeValue extends ReadValue { constructor() { super(...arguments); this.time = ''; } }; __decorate([ JsonProperty(Constants.TimeValueAsTimeStamp, DateTimeStampConverter), __metadata("design:type", Object) ], ReadTimeValue.prototype, "time", void 0); ReadTimeValue = __decorate([ JsonObject('ReadTimeValue') ], ReadTimeValue); export { ReadTimeValue }; //# sourceMappingURL=read-time-value.js.map