@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
29 lines • 847 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileExtract = void 0;
const index_1 = require("./../index");
class FileExtract {
constructor(data) {
this.fileFilter = index_1.FileFilter.fromJson(data === null || data === void 0 ? void 0 : data.fileFilter);
}
static getFileFilterDescription() {
return "";
}
static fromJson(data) {
if (data === undefined || data === null) {
return data;
}
return new FileExtract(data);
}
toJson() {
var _a;
return {
'fileFilter': (_a = this.fileFilter) === null || _a === void 0 ? void 0 : _a.toJson(),
};
}
clone() {
return FileExtract.fromJson(this.toJson());
}
}
exports.FileExtract = FileExtract;
//# sourceMappingURL=FileExtract.js.map