1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.cast_de_nrw_schule_svws_core_data_erzieher_Erzieherart = exports.Erzieherart = void 0;
- const JavaObject_1 = require("../../../java/lang/JavaObject");
- class Erzieherart extends JavaObject_1.JavaObject {
- id = null;
- bezeichnung = null;
- constructor() {
- super();
- }
- isTranspiledInstanceOf(name) {
- return ['de.nrw.schule.svws.core.data.erzieher.Erzieherart'].includes(name);
- }
- static transpilerFromJSON(json) {
- const obj = JSON.parse(json);
- const result = new Erzieherart();
- result.id = typeof obj.id === "undefined" ? null : obj.id;
- result.bezeichnung = typeof obj.bezeichnung === "undefined" ? null : obj.bezeichnung;
- return result;
- }
- static transpilerToJSON(obj) {
- let result = '{';
- result += '"id" : ' + ((!obj.id) ? 'null' : obj.id.valueOf()) + ',';
- result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- static transpilerToJSONPatch(obj) {
- let result = '{';
- if (typeof obj.id !== "undefined") {
- result += '"id" : ' + ((!obj.id) ? 'null' : obj.id.valueOf()) + ',';
- }
- if (typeof obj.bezeichnung !== "undefined") {
- result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- }
- exports.Erzieherart = Erzieherart;
- function cast_de_nrw_schule_svws_core_data_erzieher_Erzieherart(obj) {
- return obj;
- }
- exports.cast_de_nrw_schule_svws_core_data_erzieher_Erzieherart = cast_de_nrw_schule_svws_core_data_erzieher_Erzieherart;
- //# sourceMappingURL=Erzieherart.js.map
|