SchuelerLernabschnittNachpruefung.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.cast_de_nrw_schule_svws_core_data_schueler_SchuelerLernabschnittNachpruefung = exports.SchuelerLernabschnittNachpruefung = void 0;
  4. const JavaObject_1 = require("../../../java/lang/JavaObject");
  5. class SchuelerLernabschnittNachpruefung extends JavaObject_1.JavaObject {
  6. grund = "V";
  7. fachID = -1;
  8. note = null;
  9. datum = null;
  10. constructor() {
  11. super();
  12. }
  13. isTranspiledInstanceOf(name) {
  14. return ['de.nrw.schule.svws.core.data.schueler.SchuelerLernabschnittNachpruefung'].includes(name);
  15. }
  16. static transpilerFromJSON(json) {
  17. const obj = JSON.parse(json);
  18. const result = new SchuelerLernabschnittNachpruefung();
  19. if (typeof obj.grund === "undefined")
  20. throw new Error('invalid json format, missing attribute grund');
  21. result.grund = obj.grund;
  22. if (typeof obj.fachID === "undefined")
  23. throw new Error('invalid json format, missing attribute fachID');
  24. result.fachID = obj.fachID;
  25. result.note = typeof obj.note === "undefined" ? null : obj.note;
  26. result.datum = typeof obj.datum === "undefined" ? null : obj.datum;
  27. return result;
  28. }
  29. static transpilerToJSON(obj) {
  30. let result = '{';
  31. result += '"grund" : ' + '"' + obj.grund.valueOf() + '"' + ',';
  32. result += '"fachID" : ' + obj.fachID + ',';
  33. result += '"note" : ' + ((!obj.note) ? 'null' : '"' + obj.note.valueOf() + '"') + ',';
  34. result += '"datum" : ' + ((!obj.datum) ? 'null' : '"' + obj.datum.valueOf() + '"') + ',';
  35. result = result.slice(0, -1);
  36. result += '}';
  37. return result;
  38. }
  39. static transpilerToJSONPatch(obj) {
  40. let result = '{';
  41. if (typeof obj.grund !== "undefined") {
  42. result += '"grund" : ' + '"' + obj.grund.valueOf() + '"' + ',';
  43. }
  44. if (typeof obj.fachID !== "undefined") {
  45. result += '"fachID" : ' + obj.fachID + ',';
  46. }
  47. if (typeof obj.note !== "undefined") {
  48. result += '"note" : ' + ((!obj.note) ? 'null' : '"' + obj.note.valueOf() + '"') + ',';
  49. }
  50. if (typeof obj.datum !== "undefined") {
  51. result += '"datum" : ' + ((!obj.datum) ? 'null' : '"' + obj.datum.valueOf() + '"') + ',';
  52. }
  53. result = result.slice(0, -1);
  54. result += '}';
  55. return result;
  56. }
  57. }
  58. exports.SchuelerLernabschnittNachpruefung = SchuelerLernabschnittNachpruefung;
  59. function cast_de_nrw_schule_svws_core_data_schueler_SchuelerLernabschnittNachpruefung(obj) {
  60. return obj;
  61. }
  62. exports.cast_de_nrw_schule_svws_core_data_schueler_SchuelerLernabschnittNachpruefung = cast_de_nrw_schule_svws_core_data_schueler_SchuelerLernabschnittNachpruefung;
  63. //# sourceMappingURL=SchuelerLernabschnittNachpruefung.js.map