@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
33 lines • 842 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserCheck = void 0;
class UserCheck {
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 UserCheck(data);
}
toJson() {
return {
'checkType': this.checkType,
};
}
clone() {
return UserCheck.fromJson(this.toJson());
}
}
exports.UserCheck = UserCheck;
//# sourceMappingURL=UserCheck.js.map