Erzieherart.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.cast_de_nrw_schule_svws_core_data_erzieher_Erzieherart = exports.Erzieherart = void 0;
  4. const JavaObject_1 = require("../../../java/lang/JavaObject");
  5. class Erzieherart extends JavaObject_1.JavaObject {
  6. id = null;
  7. bezeichnung = null;
  8. constructor() {
  9. super();
  10. }
  11. isTranspiledInstanceOf(name) {
  12. return ['de.nrw.schule.svws.core.data.erzieher.Erzieherart'].includes(name);
  13. }
  14. static transpilerFromJSON(json) {
  15. const obj = JSON.parse(json);
  16. const result = new Erzieherart();
  17. result.id = typeof obj.id === "undefined" ? null : obj.id;
  18. result.bezeichnung = typeof obj.bezeichnung === "undefined" ? null : obj.bezeichnung;
  19. return result;
  20. }
  21. static transpilerToJSON(obj) {
  22. let result = '{';
  23. result += '"id" : ' + ((!obj.id) ? 'null' : obj.id.valueOf()) + ',';
  24. result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
  25. result = result.slice(0, -1);
  26. result += '}';
  27. return result;
  28. }
  29. static transpilerToJSONPatch(obj) {
  30. let result = '{';
  31. if (typeof obj.id !== "undefined") {
  32. result += '"id" : ' + ((!obj.id) ? 'null' : obj.id.valueOf()) + ',';
  33. }
  34. if (typeof obj.bezeichnung !== "undefined") {
  35. result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
  36. }
  37. result = result.slice(0, -1);
  38. result += '}';
  39. return result;
  40. }
  41. }
  42. exports.Erzieherart = Erzieherart;
  43. function cast_de_nrw_schule_svws_core_data_erzieher_Erzieherart(obj) {
  44. return obj;
  45. }
  46. exports.cast_de_nrw_schule_svws_core_data_erzieher_Erzieherart = cast_de_nrw_schule_svws_core_data_erzieher_Erzieherart;
  47. //# sourceMappingURL=Erzieherart.js.map