123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
- import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
- export class KursblockungInputFach extends JavaObject {
- public enmRevision : number = -1;
- public id : number = 0;
- public representation : String = "";
- public constructor() {
- super();
- }
- isTranspiledInstanceOf(name : string): boolean {
- return ['de.nrw.schule.svws.core.data.kursblockung.KursblockungInputFach'].includes(name);
- }
- public static transpilerFromJSON(json : string): KursblockungInputFach {
- const obj = JSON.parse(json);
- const result = new KursblockungInputFach();
- 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;
- }
- public static transpilerToJSON(obj : KursblockungInputFach) : string {
- let result = '{';
- result += '"enmRevision" : ' + obj.enmRevision + ',';
- result += '"id" : ' + obj.id + ',';
- result += '"representation" : ' + '"' + obj.representation.valueOf() + '"' + ',';
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- public static transpilerToJSONPatch(obj : Partial<KursblockungInputFach>) : string {
- 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;
- }
- }
- export function cast_de_nrw_schule_svws_core_data_kursblockung_KursblockungInputFach(obj : unknown) : KursblockungInputFach {
- return obj as KursblockungInputFach;
- }
|