@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
30 lines • 959 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExecutableApplicationCheck = void 0;
const index_1 = require("./../index");
class ExecutableApplicationCheck extends index_1.ApplicationCheck {
constructor(data) {
super(data);
this.executables = data.executables;
}
static getExecutablesDefault() {
return [];
}
static getExecutablesDescription() {
return "";
}
static fromJson(data) {
if (data === undefined || data === null) {
return data;
}
return new ExecutableApplicationCheck(data);
}
toJson() {
return Object.assign(Object.assign({}, (super.toJson())), { 'executables': this.executables });
}
clone() {
return ExecutableApplicationCheck.fromJson(this.toJson());
}
}
exports.ExecutableApplicationCheck = ExecutableApplicationCheck;
//# sourceMappingURL=ExecutableApplicationCheck.js.map