@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
29 lines • 971 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RemovePageTransitions = void 0;
const index_1 = require("./../index");
class RemovePageTransitions {
constructor(data) {
this.transitionSelection = index_1.SelectionTransition.fromJson(data === null || data === void 0 ? void 0 : data.transitionSelection);
}
static getTransitionSelectionDescription() {
return "";
}
static fromJson(data) {
if (data === undefined || data === null) {
return data;
}
return new RemovePageTransitions(data);
}
toJson() {
var _a;
return {
'transitionSelection': (_a = this.transitionSelection) === null || _a === void 0 ? void 0 : _a.toJson(),
};
}
clone() {
return RemovePageTransitions.fromJson(this.toJson());
}
}
exports.RemovePageTransitions = RemovePageTransitions;
//# sourceMappingURL=RemovePageTransitions.js.map