1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.cast_de_nrw_schule_svws_core_data_kursblockung_KursblockungInputSchueler = exports.KursblockungInputSchueler = void 0;
- const JavaObject_1 = require("../../../java/lang/JavaObject");
- class KursblockungInputSchueler extends JavaObject_1.JavaObject {
- enmRevision = -1;
- id = 0;
- representation = "";
- constructor() {
- super();
- }
- isTranspiledInstanceOf(name) {
- return ['de.nrw.schule.svws.core.data.kursblockung.KursblockungInputSchueler'].includes(name);
- }
- static transpilerFromJSON(json) {
- const obj = JSON.parse(json);
- const result = new KursblockungInputSchueler();
- 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.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 += '"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.representation !== "undefined") {
- result += '"representation" : ' + '"' + obj.representation.valueOf() + '"' + ',';
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- }
- exports.KursblockungInputSchueler = KursblockungInputSchueler;
- function cast_de_nrw_schule_svws_core_data_kursblockung_KursblockungInputSchueler(obj) {
- return obj;
- }
- exports.cast_de_nrw_schule_svws_core_data_kursblockung_KursblockungInputSchueler = cast_de_nrw_schule_svws_core_data_kursblockung_KursblockungInputSchueler;
- //# sourceMappingURL=KursblockungInputSchueler.js.map
|