UNPKG

@dasch-swiss/dsp-js

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