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