UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

47 lines 1.73 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ToolboxOperation = void 0; const index_1 = require("./../index"); class ToolboxOperation { constructor(data) { this.billing = index_1.Billing.fromJson(data === null || data === void 0 ? void 0 : data.billing); 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); this.toolbox = (data.toolbox || []).map(index_1.BaseToolbox.fromJson); } static getBillingDescription() { return ""; } static getPasswordDescription() { return ""; } static getSettingsDescription() { return ""; } static getToolboxDefault() { return []; } static getToolboxDescription() { return ""; } static fromJson(data) { if (data === undefined || data === null) { return data; } return new ToolboxOperation(data); } toJson() { var _a, _b, _c, _d; return { 'billing': (_a = this.billing) === null || _a === void 0 ? void 0 : _a.toJson(), 'password': (_b = this.password) === null || _b === void 0 ? void 0 : _b.toJson(), 'settings': (_c = this.settings) === null || _c === void 0 ? void 0 : _c.toJson(), 'toolbox': (_d = this.toolbox) === null || _d === void 0 ? void 0 : _d.map((data) => data.toJson()), }; } clone() { return ToolboxOperation.fromJson(this.toJson()); } } exports.ToolboxOperation = ToolboxOperation; //# sourceMappingURL=ToolboxOperation.js.map