@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
23 lines • 756 B
JavaScript
import { __decorate, __metadata } from "tslib";
import { JsonObject, JsonProperty } from 'json2typescript';
import { Constants } from '../../../Constants';
import { IdConverter } from '../../../custom-converters/id-converter';
import { ReadValue } from './read-value';
/**
* @category Model V2
*/
let ReadListValue = class ReadListValue extends ReadValue {
constructor() {
super(...arguments);
this.listNode = '';
}
};
__decorate([
JsonProperty(Constants.ListValueAsListNode, IdConverter),
__metadata("design:type", Object)
], ReadListValue.prototype, "listNode", void 0);
ReadListValue = __decorate([
JsonObject('ReadListValue')
], ReadListValue);
export { ReadListValue };
//# sourceMappingURL=read-list-value.js.map