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