UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

28 lines 1.08 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LaunchApplicationAction = void 0; const index_1 = require("./../index"); class LaunchApplicationAction extends index_1.ActionEvent { constructor(data) { super(data); this.launchApplication = index_1.LaunchApplicationActionLaunchApplication.fromJson(data === null || data === void 0 ? void 0 : data.launchApplication); } static getLaunchApplicationDescription() { return ""; } static fromJson(data) { if (data === undefined || data === null) { return data; } return new LaunchApplicationAction(data); } toJson() { var _a; return Object.assign(Object.assign({}, (super.toJson())), { 'launchApplication': (_a = this.launchApplication) === null || _a === void 0 ? void 0 : _a.toJson() }); } clone() { return LaunchApplicationAction.fromJson(this.toJson()); } } exports.LaunchApplicationAction = LaunchApplicationAction; //# sourceMappingURL=LaunchApplicationAction.js.map