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