12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.cast_de_nrw_schule_svws_core_data_schueler_SchuelerSchulbesuchSchule = exports.SchuelerSchulbesuchSchule = void 0;
- const JavaObject_1 = require("../../../java/lang/JavaObject");
- class SchuelerSchulbesuchSchule extends JavaObject_1.JavaObject {
- schulnummer = "";
- schulgliederung = null;
- entlassgrundID = null;
- abschlussartID = null;
- organisationsFormID = null;
- datumVon = null;
- datumBis = null;
- jahrgangVon = null;
- jahrgangBis = null;
- constructor() {
- super();
- }
- isTranspiledInstanceOf(name) {
- return ['de.nrw.schule.svws.core.data.schueler.SchuelerSchulbesuchSchule'].includes(name);
- }
- static transpilerFromJSON(json) {
- const obj = JSON.parse(json);
- const result = new SchuelerSchulbesuchSchule();
- if (typeof obj.schulnummer === "undefined")
- throw new Error('invalid json format, missing attribute schulnummer');
- result.schulnummer = obj.schulnummer;
- result.schulgliederung = typeof obj.schulgliederung === "undefined" ? null : obj.schulgliederung;
- result.entlassgrundID = typeof obj.entlassgrundID === "undefined" ? null : obj.entlassgrundID;
- result.abschlussartID = typeof obj.abschlussartID === "undefined" ? null : obj.abschlussartID;
- result.organisationsFormID = typeof obj.organisationsFormID === "undefined" ? null : obj.organisationsFormID;
- result.datumVon = typeof obj.datumVon === "undefined" ? null : obj.datumVon;
- result.datumBis = typeof obj.datumBis === "undefined" ? null : obj.datumBis;
- result.jahrgangVon = typeof obj.jahrgangVon === "undefined" ? null : obj.jahrgangVon;
- result.jahrgangBis = typeof obj.jahrgangBis === "undefined" ? null : obj.jahrgangBis;
- return result;
- }
- static transpilerToJSON(obj) {
- let result = '{';
- result += '"schulnummer" : ' + '"' + obj.schulnummer.valueOf() + '"' + ',';
- result += '"schulgliederung" : ' + ((!obj.schulgliederung) ? 'null' : '"' + obj.schulgliederung.valueOf() + '"') + ',';
- result += '"entlassgrundID" : ' + ((!obj.entlassgrundID) ? 'null' : obj.entlassgrundID.valueOf()) + ',';
- result += '"abschlussartID" : ' + ((!obj.abschlussartID) ? 'null' : '"' + obj.abschlussartID.valueOf() + '"') + ',';
- result += '"organisationsFormID" : ' + ((!obj.organisationsFormID) ? 'null' : '"' + obj.organisationsFormID.valueOf() + '"') + ',';
- result += '"datumVon" : ' + ((!obj.datumVon) ? 'null' : '"' + obj.datumVon.valueOf() + '"') + ',';
- result += '"datumBis" : ' + ((!obj.datumBis) ? 'null' : '"' + obj.datumBis.valueOf() + '"') + ',';
- result += '"jahrgangVon" : ' + ((!obj.jahrgangVon) ? 'null' : '"' + obj.jahrgangVon.valueOf() + '"') + ',';
- result += '"jahrgangBis" : ' + ((!obj.jahrgangBis) ? 'null' : '"' + obj.jahrgangBis.valueOf() + '"') + ',';
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- static transpilerToJSONPatch(obj) {
- let result = '{';
- if (typeof obj.schulnummer !== "undefined") {
- result += '"schulnummer" : ' + '"' + obj.schulnummer.valueOf() + '"' + ',';
- }
- if (typeof obj.schulgliederung !== "undefined") {
- result += '"schulgliederung" : ' + ((!obj.schulgliederung) ? 'null' : '"' + obj.schulgliederung.valueOf() + '"') + ',';
- }
- if (typeof obj.entlassgrundID !== "undefined") {
- result += '"entlassgrundID" : ' + ((!obj.entlassgrundID) ? 'null' : obj.entlassgrundID.valueOf()) + ',';
- }
- if (typeof obj.abschlussartID !== "undefined") {
- result += '"abschlussartID" : ' + ((!obj.abschlussartID) ? 'null' : '"' + obj.abschlussartID.valueOf() + '"') + ',';
- }
- if (typeof obj.organisationsFormID !== "undefined") {
- result += '"organisationsFormID" : ' + ((!obj.organisationsFormID) ? 'null' : '"' + obj.organisationsFormID.valueOf() + '"') + ',';
- }
- if (typeof obj.datumVon !== "undefined") {
- result += '"datumVon" : ' + ((!obj.datumVon) ? 'null' : '"' + obj.datumVon.valueOf() + '"') + ',';
- }
- if (typeof obj.datumBis !== "undefined") {
- result += '"datumBis" : ' + ((!obj.datumBis) ? 'null' : '"' + obj.datumBis.valueOf() + '"') + ',';
- }
- if (typeof obj.jahrgangVon !== "undefined") {
- result += '"jahrgangVon" : ' + ((!obj.jahrgangVon) ? 'null' : '"' + obj.jahrgangVon.valueOf() + '"') + ',';
- }
- if (typeof obj.jahrgangBis !== "undefined") {
- result += '"jahrgangBis" : ' + ((!obj.jahrgangBis) ? 'null' : '"' + obj.jahrgangBis.valueOf() + '"') + ',';
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- }
- exports.SchuelerSchulbesuchSchule = SchuelerSchulbesuchSchule;
- function cast_de_nrw_schule_svws_core_data_schueler_SchuelerSchulbesuchSchule(obj) {
- return obj;
- }
- exports.cast_de_nrw_schule_svws_core_data_schueler_SchuelerSchulbesuchSchule = cast_de_nrw_schule_svws_core_data_schueler_SchuelerSchulbesuchSchule;
- //# sourceMappingURL=SchuelerSchulbesuchSchule.js.map
|