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