@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
44 lines • 1.66 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConverterOperation = void 0;
const index_1 = require("./../index");
class ConverterOperation {
constructor(data) {
this.billing = index_1.Billing.fromJson(data === null || data === void 0 ? void 0 : data.billing);
this.converter = index_1.Converter.fromJson(data.converter);
this.password = index_1.PdfPassword.fromJson(data === null || data === void 0 ? void 0 : data.password);
this.settings = index_1.Settings.fromJson(data === null || data === void 0 ? void 0 : data.settings);
}
static getBillingDescription() {
return "";
}
static getConverterDescription() {
return "";
}
static getPasswordDescription() {
return "";
}
static getSettingsDescription() {
return "";
}
static fromJson(data) {
if (data === undefined || data === null) {
return data;
}
return new ConverterOperation(data);
}
toJson() {
var _a, _b, _c, _d;
return {
'billing': (_a = this.billing) === null || _a === void 0 ? void 0 : _a.toJson(),
'converter': (_b = this.converter) === null || _b === void 0 ? void 0 : _b.toJson(),
'password': (_c = this.password) === null || _c === void 0 ? void 0 : _c.toJson(),
'settings': (_d = this.settings) === null || _d === void 0 ? void 0 : _d.toJson(),
};
}
clone() {
return ConverterOperation.fromJson(this.toJson());
}
}
exports.ConverterOperation = ConverterOperation;
//# sourceMappingURL=ConverterOperation.js.map