UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

33 lines 835 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LogCheck = void 0; class LogCheck { constructor(data) { let checkTypeDefault = ""; this.checkType = typeof data.checkType !== "undefined" ? data.checkType : checkTypeDefault; } static getCheckTypeDefault() { return ""; } static getCheckTypeDescription() { return ""; } static fromJson(data) { if (data === undefined || data === null) { return data; } switch (data.checkType) { } return new LogCheck(data); } toJson() { return { 'checkType': this.checkType, }; } clone() { return LogCheck.fromJson(this.toJson()); } } exports.LogCheck = LogCheck; //# sourceMappingURL=LogCheck.js.map