@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
22 lines • 699 B
JavaScript
import { __decorate, __metadata } from "tslib";
import { JsonObject, JsonProperty } from 'json2typescript';
import { Constants } from '../../Constants';
import { UpdateDeleteEntity } from '../update-delete-entity';
/**
* @category Model V2
*/
let UpdateOntology = class UpdateOntology extends UpdateDeleteEntity {
constructor() {
super(...arguments);
this.type = Constants.Ontology;
}
};
__decorate([
JsonProperty('@type', String),
__metadata("design:type", String)
], UpdateOntology.prototype, "type", void 0);
UpdateOntology = __decorate([
JsonObject('UpdateOntology')
], UpdateOntology);
export { UpdateOntology };
//# sourceMappingURL=update-ontology.js.map