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