"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.cast_de_nrw_schule_svws_core_data_enm_ENMTeilleistungsart = exports.ENMTeilleistungsart = void 0; const JavaObject_1 = require("../../../java/lang/JavaObject"); class ENMTeilleistungsart extends JavaObject_1.JavaObject { id = 0; bezeichnung = null; sortierung = null; gewichtung = null; constructor() { super(); } isTranspiledInstanceOf(name) { return ['de.nrw.schule.svws.core.data.enm.ENMTeilleistungsart'].includes(name); } static transpilerFromJSON(json) { const obj = JSON.parse(json); const result = new ENMTeilleistungsart(); if (typeof obj.id === "undefined") throw new Error('invalid json format, missing attribute id'); result.id = obj.id; result.bezeichnung = typeof obj.bezeichnung === "undefined" ? null : obj.bezeichnung; result.sortierung = typeof obj.sortierung === "undefined" ? null : obj.sortierung; result.gewichtung = typeof obj.gewichtung === "undefined" ? null : obj.gewichtung; return result; } static transpilerToJSON(obj) { let result = '{'; result += '"id" : ' + obj.id + ','; result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ','; result += '"sortierung" : ' + ((!obj.sortierung) ? 'null' : obj.sortierung.valueOf()) + ','; result += '"gewichtung" : ' + ((!obj.gewichtung) ? 'null' : obj.gewichtung.valueOf()) + ','; result = result.slice(0, -1); result += '}'; return result; } static transpilerToJSONPatch(obj) { let result = '{'; if (typeof obj.id !== "undefined") { result += '"id" : ' + obj.id + ','; } if (typeof obj.bezeichnung !== "undefined") { result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ','; } if (typeof obj.sortierung !== "undefined") { result += '"sortierung" : ' + ((!obj.sortierung) ? 'null' : obj.sortierung.valueOf()) + ','; } if (typeof obj.gewichtung !== "undefined") { result += '"gewichtung" : ' + ((!obj.gewichtung) ? 'null' : obj.gewichtung.valueOf()) + ','; } result = result.slice(0, -1); result += '}'; return result; } } exports.ENMTeilleistungsart = ENMTeilleistungsart; function cast_de_nrw_schule_svws_core_data_enm_ENMTeilleistungsart(obj) { return obj; } exports.cast_de_nrw_schule_svws_core_data_enm_ENMTeilleistungsart = cast_de_nrw_schule_svws_core_data_enm_ENMTeilleistungsart; //# sourceMappingURL=ENMTeilleistungsart.js.map