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