@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
23 lines • 724 B
JavaScript
import { __decorate, __metadata } from "tslib";
import { JsonObject, JsonProperty } from 'json2typescript';
import { Constants } from '../../../Constants';
import { UpdateValue } from './update-value';
/**
* @category Model V2
*/
let UpdateIntValue = class UpdateIntValue extends UpdateValue {
constructor() {
super(Constants.IntValue);
this.int = 0;
}
};
__decorate([
JsonProperty(Constants.IntValueAsInt, Number),
__metadata("design:type", Object)
], UpdateIntValue.prototype, "int", void 0);
UpdateIntValue = __decorate([
JsonObject('UpdateIntValue'),
__metadata("design:paramtypes", [])
], UpdateIntValue);
export { UpdateIntValue };
//# sourceMappingURL=update-int-value.js.map