"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.cast_de_nrw_schule_svws_core_data_enm_ENMLernabschnitt = exports.ENMLernabschnitt = void 0; const JavaObject_1 = require("../../../java/lang/JavaObject"); class ENMLernabschnitt extends JavaObject_1.JavaObject { id = 0; pruefungsordnung = null; lernbereich1note = null; lernbereich2note = null; foerderschwerpunkt1 = null; foerderschwerpunkt2 = null; constructor() { super(); } isTranspiledInstanceOf(name) { return ['de.nrw.schule.svws.core.data.enm.ENMLernabschnitt'].includes(name); } static transpilerFromJSON(json) { const obj = JSON.parse(json); const result = new ENMLernabschnitt(); if (typeof obj.id === "undefined") throw new Error('invalid json format, missing attribute id'); result.id = obj.id; result.pruefungsordnung = typeof obj.pruefungsordnung === "undefined" ? null : obj.pruefungsordnung; result.lernbereich1note = typeof obj.lernbereich1note === "undefined" ? null : obj.lernbereich1note; result.lernbereich2note = typeof obj.lernbereich2note === "undefined" ? null : obj.lernbereich2note; result.foerderschwerpunkt1 = typeof obj.foerderschwerpunkt1 === "undefined" ? null : obj.foerderschwerpunkt1; result.foerderschwerpunkt2 = typeof obj.foerderschwerpunkt2 === "undefined" ? null : obj.foerderschwerpunkt2; return result; } static transpilerToJSON(obj) { let result = '{'; result += '"id" : ' + obj.id + ','; result += '"pruefungsordnung" : ' + ((!obj.pruefungsordnung) ? 'null' : '"' + obj.pruefungsordnung.valueOf() + '"') + ','; result += '"lernbereich1note" : ' + ((!obj.lernbereich1note) ? 'null' : '"' + obj.lernbereich1note.valueOf() + '"') + ','; result += '"lernbereich2note" : ' + ((!obj.lernbereich2note) ? 'null' : '"' + obj.lernbereich2note.valueOf() + '"') + ','; result += '"foerderschwerpunkt1" : ' + ((!obj.foerderschwerpunkt1) ? 'null' : '"' + obj.foerderschwerpunkt1.valueOf() + '"') + ','; result += '"foerderschwerpunkt2" : ' + ((!obj.foerderschwerpunkt2) ? 'null' : '"' + obj.foerderschwerpunkt2.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.pruefungsordnung !== "undefined") { result += '"pruefungsordnung" : ' + ((!obj.pruefungsordnung) ? 'null' : '"' + obj.pruefungsordnung.valueOf() + '"') + ','; } if (typeof obj.lernbereich1note !== "undefined") { result += '"lernbereich1note" : ' + ((!obj.lernbereich1note) ? 'null' : '"' + obj.lernbereich1note.valueOf() + '"') + ','; } if (typeof obj.lernbereich2note !== "undefined") { result += '"lernbereich2note" : ' + ((!obj.lernbereich2note) ? 'null' : '"' + obj.lernbereich2note.valueOf() + '"') + ','; } if (typeof obj.foerderschwerpunkt1 !== "undefined") { result += '"foerderschwerpunkt1" : ' + ((!obj.foerderschwerpunkt1) ? 'null' : '"' + obj.foerderschwerpunkt1.valueOf() + '"') + ','; } if (typeof obj.foerderschwerpunkt2 !== "undefined") { result += '"foerderschwerpunkt2" : ' + ((!obj.foerderschwerpunkt2) ? 'null' : '"' + obj.foerderschwerpunkt2.valueOf() + '"') + ','; } result = result.slice(0, -1); result += '}'; return result; } } exports.ENMLernabschnitt = ENMLernabschnitt; function cast_de_nrw_schule_svws_core_data_enm_ENMLernabschnitt(obj) { return obj; } exports.cast_de_nrw_schule_svws_core_data_enm_ENMLernabschnitt = cast_de_nrw_schule_svws_core_data_enm_ENMLernabschnitt; //# sourceMappingURL=ENMLernabschnitt.js.map