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