1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.cast_de_nrw_schule_svws_core_data_kursblockung_KursblockungOutputFachwahlZuKurs = exports.KursblockungOutputFachwahlZuKurs = void 0;
- const JavaObject_1 = require("../../../java/lang/JavaObject");
- class KursblockungOutputFachwahlZuKurs extends JavaObject_1.JavaObject {
- enmRevision = -1;
- fachwahl = 0;
- kurs = 0;
- constructor() {
- super();
- }
- isTranspiledInstanceOf(name) {
- return ['de.nrw.schule.svws.core.data.kursblockung.KursblockungOutputFachwahlZuKurs'].includes(name);
- }
- static transpilerFromJSON(json) {
- const obj = JSON.parse(json);
- const result = new KursblockungOutputFachwahlZuKurs();
- if (typeof obj.enmRevision === "undefined")
- throw new Error('invalid json format, missing attribute enmRevision');
- result.enmRevision = obj.enmRevision;
- if (typeof obj.fachwahl === "undefined")
- throw new Error('invalid json format, missing attribute fachwahl');
- result.fachwahl = obj.fachwahl;
- if (typeof obj.kurs === "undefined")
- throw new Error('invalid json format, missing attribute kurs');
- result.kurs = obj.kurs;
- return result;
- }
- static transpilerToJSON(obj) {
- let result = '{';
- result += '"enmRevision" : ' + obj.enmRevision + ',';
- result += '"fachwahl" : ' + obj.fachwahl + ',';
- result += '"kurs" : ' + obj.kurs + ',';
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- static transpilerToJSONPatch(obj) {
- let result = '{';
- if (typeof obj.enmRevision !== "undefined") {
- result += '"enmRevision" : ' + obj.enmRevision + ',';
- }
- if (typeof obj.fachwahl !== "undefined") {
- result += '"fachwahl" : ' + obj.fachwahl + ',';
- }
- if (typeof obj.kurs !== "undefined") {
- result += '"kurs" : ' + obj.kurs + ',';
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- }
- exports.KursblockungOutputFachwahlZuKurs = KursblockungOutputFachwahlZuKurs;
- function cast_de_nrw_schule_svws_core_data_kursblockung_KursblockungOutputFachwahlZuKurs(obj) {
- return obj;
- }
- exports.cast_de_nrw_schule_svws_core_data_kursblockung_KursblockungOutputFachwahlZuKurs = cast_de_nrw_schule_svws_core_data_kursblockung_KursblockungOutputFachwahlZuKurs;
- //# sourceMappingURL=KursblockungOutputFachwahlZuKurs.js.map
|