@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
27 lines • 744 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProtocolsHttpSettingsSSL = void 0;
class ProtocolsHttpSettingsSSL {
constructor(data) {
this.protocol = data.protocol;
}
static getProtocolDescription() {
return "";
}
static fromJson(data) {
if (data === undefined || data === null) {
return data;
}
return new ProtocolsHttpSettingsSSL(data);
}
toJson() {
return {
'protocol': this.protocol,
};
}
clone() {
return ProtocolsHttpSettingsSSL.fromJson(this.toJson());
}
}
exports.ProtocolsHttpSettingsSSL = ProtocolsHttpSettingsSSL;
//# sourceMappingURL=ProtocolsHttpSettingsSSL.js.map