SchuelerLernabschnittNachpruefung.ts 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
  2. import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
  3. export class SchuelerLernabschnittNachpruefung extends JavaObject {
  4. public grund : String = "V";
  5. public fachID : number = -1;
  6. public note : String | null = null;
  7. public datum : String | null = null;
  8. public constructor() {
  9. super();
  10. }
  11. isTranspiledInstanceOf(name : string): boolean {
  12. return ['de.nrw.schule.svws.core.data.schueler.SchuelerLernabschnittNachpruefung'].includes(name);
  13. }
  14. public static transpilerFromJSON(json : string): SchuelerLernabschnittNachpruefung {
  15. const obj = JSON.parse(json);
  16. const result = new SchuelerLernabschnittNachpruefung();
  17. if (typeof obj.grund === "undefined")
  18. throw new Error('invalid json format, missing attribute grund');
  19. result.grund = obj.grund;
  20. if (typeof obj.fachID === "undefined")
  21. throw new Error('invalid json format, missing attribute fachID');
  22. result.fachID = obj.fachID;
  23. result.note = typeof obj.note === "undefined" ? null : obj.note;
  24. result.datum = typeof obj.datum === "undefined" ? null : obj.datum;
  25. return result;
  26. }
  27. public static transpilerToJSON(obj : SchuelerLernabschnittNachpruefung) : string {
  28. let result = '{';
  29. result += '"grund" : ' + '"' + obj.grund.valueOf() + '"' + ',';
  30. result += '"fachID" : ' + obj.fachID + ',';
  31. result += '"note" : ' + ((!obj.note) ? 'null' : '"' + obj.note.valueOf() + '"') + ',';
  32. result += '"datum" : ' + ((!obj.datum) ? 'null' : '"' + obj.datum.valueOf() + '"') + ',';
  33. result = result.slice(0, -1);
  34. result += '}';
  35. return result;
  36. }
  37. public static transpilerToJSONPatch(obj : Partial<SchuelerLernabschnittNachpruefung>) : string {
  38. let result = '{';
  39. if (typeof obj.grund !== "undefined") {
  40. result += '"grund" : ' + '"' + obj.grund.valueOf() + '"' + ',';
  41. }
  42. if (typeof obj.fachID !== "undefined") {
  43. result += '"fachID" : ' + obj.fachID + ',';
  44. }
  45. if (typeof obj.note !== "undefined") {
  46. result += '"note" : ' + ((!obj.note) ? 'null' : '"' + obj.note.valueOf() + '"') + ',';
  47. }
  48. if (typeof obj.datum !== "undefined") {
  49. result += '"datum" : ' + ((!obj.datum) ? 'null' : '"' + obj.datum.valueOf() + '"') + ',';
  50. }
  51. result = result.slice(0, -1);
  52. result += '}';
  53. return result;
  54. }
  55. }
  56. export function cast_de_nrw_schule_svws_core_data_schueler_SchuelerLernabschnittNachpruefung(obj : unknown) : SchuelerLernabschnittNachpruefung {
  57. return obj as SchuelerLernabschnittNachpruefung;
  58. }