UNPKG

@dasch-swiss/dsp-js

Version:
27 lines 828 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { Constants } from '../../../Constants'; import { BaseValue } from '../base-value'; /** * @category Model V2 */ let DeleteValue = class DeleteValue extends BaseValue { constructor() { super(...arguments); this.id = ''; this.deleteComment = undefined; } }; __decorate([ JsonProperty('@id', String), __metadata("design:type", Object) ], DeleteValue.prototype, "id", void 0); __decorate([ JsonProperty(Constants.DeleteComment, String, true), __metadata("design:type", String) ], DeleteValue.prototype, "deleteComment", void 0); DeleteValue = __decorate([ JsonObject('DeleteValue') ], DeleteValue); export { DeleteValue }; //# sourceMappingURL=delete-value.js.map