UNPKG

@dasch-swiss/dsp-js

Version:
32 lines 896 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; /** * A response containing a deleted flag and iri. * * @category Model Admin */ let DeleteListResponse = class DeleteListResponse { constructor() { /** * Status of list node. */ this.deleted = false; /** * The IRI of the deleted list. */ this.iri = ''; } }; __decorate([ JsonProperty('deleted', Boolean), __metadata("design:type", Object) ], DeleteListResponse.prototype, "deleted", void 0); __decorate([ JsonProperty('iri', String), __metadata("design:type", Object) ], DeleteListResponse.prototype, "iri", void 0); DeleteListResponse = __decorate([ JsonObject('DeleteListResponse') ], DeleteListResponse); export { DeleteListResponse }; //# sourceMappingURL=delete-list-response.js.map