UNPKG

@dasch-swiss/dsp-js

Version:
24 lines 826 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { Constants } from '../../../Constants'; import { IdConverter } from '../../../custom-converters/id-converter'; import { UpdateValue } from './update-value'; /** * @category Model V2 */ let UpdateListValue = class UpdateListValue extends UpdateValue { constructor() { super(Constants.ListValue); this.listNode = ''; } }; __decorate([ JsonProperty(Constants.ListValueAsListNode, IdConverter), __metadata("design:type", Object) ], UpdateListValue.prototype, "listNode", void 0); UpdateListValue = __decorate([ JsonObject('UpdateListValue'), __metadata("design:paramtypes", []) ], UpdateListValue); export { UpdateListValue }; //# sourceMappingURL=update-list-value.js.map