@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
31 lines • 931 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DLQCleanUpResponse = void 0;
class DLQCleanUpResponse {
constructor(data) {
let removedDefault = 0;
this.removed = typeof (data === null || data === void 0 ? void 0 : data.removed) !== "undefined" ? data === null || data === void 0 ? void 0 : data.removed : removedDefault;
}
static getRemovedDefault() {
return 0;
}
static getRemovedDescription() {
return "";
}
static fromJson(data) {
if (data === undefined || data === null) {
return data;
}
return new DLQCleanUpResponse(data);
}
toJson() {
return {
'removed': this.removed,
};
}
clone() {
return DLQCleanUpResponse.fromJson(this.toJson());
}
}
exports.DLQCleanUpResponse = DLQCleanUpResponse;
//# sourceMappingURL=DLQCleanUpResponse.js.map