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 { CreateValue } from './create-value'; /** * @category Model V2 */ let CreateListValue = class CreateListValue extends CreateValue { constructor() { super(Constants.ListValue); this.listNode = ''; } }; __decorate([ JsonProperty(Constants.ListValueAsListNode, IdConverter), __metadata("design:type", Object) ], CreateListValue.prototype, "listNode", void 0); CreateListValue = __decorate([ JsonObject('CreateListValue'), __metadata("design:paramtypes", []) ], CreateListValue); export { CreateListValue }; //# sourceMappingURL=create-list-value.js.map