UNPKG

@dasch-swiss/dsp-js

Version:
23 lines 775 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { Constants } from '../../../Constants'; import { CreateValue } from './create-value'; /** * @category Model V2 */ let CreateBooleanValue = class CreateBooleanValue extends CreateValue { constructor() { super(Constants.BooleanValue); this.bool = false; } }; __decorate([ JsonProperty(Constants.BooleanValueAsBoolean, Boolean), __metadata("design:type", Object) ], CreateBooleanValue.prototype, "bool", void 0); CreateBooleanValue = __decorate([ JsonObject('CreateBooleanValue'), __metadata("design:paramtypes", []) ], CreateBooleanValue); export { CreateBooleanValue }; //# sourceMappingURL=create-boolean-value.js.map