"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.cast_de_nrw_schule_svws_core_data_abschluss_AbschlussErgebnisBerufsbildend = exports.AbschlussErgebnisBerufsbildend = void 0; const JavaObject_1 = require("../../../java/lang/JavaObject"); class AbschlussErgebnisBerufsbildend extends JavaObject_1.JavaObject { hatBSA = false; note = 0; hatBA = null; abschlussAllgemeinbildend = null; log = null; constructor() { super(); } isTranspiledInstanceOf(name) { return ['de.nrw.schule.svws.core.data.abschluss.AbschlussErgebnisBerufsbildend'].includes(name); } static transpilerFromJSON(json) { const obj = JSON.parse(json); const result = new AbschlussErgebnisBerufsbildend(); if (typeof obj.hatBSA === "undefined") throw new Error('invalid json format, missing attribute hatBSA'); result.hatBSA = obj.hatBSA; if (typeof obj.note === "undefined") throw new Error('invalid json format, missing attribute note'); result.note = obj.note; result.hatBA = typeof obj.hatBA === "undefined" ? null : obj.hatBA; result.abschlussAllgemeinbildend = typeof obj.abschlussAllgemeinbildend === "undefined" ? null : obj.abschlussAllgemeinbildend; if (!!obj.log) { for (let elem of obj.log) { result.log?.add(elem); } } return result; } static transpilerToJSON(obj) { let result = '{'; result += '"hatBSA" : ' + obj.hatBSA + ','; result += '"note" : ' + obj.note + ','; result += '"hatBA" : ' + ((!obj.hatBA) ? 'null' : obj.hatBA.valueOf()) + ','; result += '"abschlussAllgemeinbildend" : ' + ((!obj.abschlussAllgemeinbildend) ? 'null' : '"' + obj.abschlussAllgemeinbildend.valueOf() + '"') + ','; if (!obj.log) { result += '[]'; } else { result += '[ '; for (let i = 0; i < obj.log.size(); i++) { let elem = obj.log.get(i); result += '"' + elem + '"'; if (i < obj.log.size() - 1) result += ','; } result += ' ]' + ','; } result = result.slice(0, -1); result += '}'; return result; } static transpilerToJSONPatch(obj) { let result = '{'; if (typeof obj.hatBSA !== "undefined") { result += '"hatBSA" : ' + obj.hatBSA + ','; } if (typeof obj.note !== "undefined") { result += '"note" : ' + obj.note + ','; } if (typeof obj.hatBA !== "undefined") { result += '"hatBA" : ' + ((!obj.hatBA) ? 'null' : obj.hatBA.valueOf()) + ','; } if (typeof obj.abschlussAllgemeinbildend !== "undefined") { result += '"abschlussAllgemeinbildend" : ' + ((!obj.abschlussAllgemeinbildend) ? 'null' : '"' + obj.abschlussAllgemeinbildend.valueOf() + '"') + ','; } if (typeof obj.log !== "undefined") { if (!obj.log) { result += '[]'; } else { result += '[ '; for (let i = 0; i < obj.log.size(); i++) { let elem = obj.log.get(i); result += '"' + elem + '"'; if (i < obj.log.size() - 1) result += ','; } result += ' ]' + ','; } } result = result.slice(0, -1); result += '}'; return result; } } exports.AbschlussErgebnisBerufsbildend = AbschlussErgebnisBerufsbildend; function cast_de_nrw_schule_svws_core_data_abschluss_AbschlussErgebnisBerufsbildend(obj) { return obj; } exports.cast_de_nrw_schule_svws_core_data_abschluss_AbschlussErgebnisBerufsbildend = cast_de_nrw_schule_svws_core_data_abschluss_AbschlussErgebnisBerufsbildend; //# sourceMappingURL=AbschlussErgebnisBerufsbildend.js.map