ENMTeilleistung.ts 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 ENMTeilleistung extends JavaObject {
  4. public id : number = 0;
  5. public artID : number = 0;
  6. public datum : String | null = null;
  7. public bemerkung : String | null = null;
  8. public notenKuerzel : String | null = null;
  9. public constructor() {
  10. super();
  11. }
  12. isTranspiledInstanceOf(name : string): boolean {
  13. return ['de.nrw.schule.svws.core.data.enm.ENMTeilleistung'].includes(name);
  14. }
  15. public static transpilerFromJSON(json : string): ENMTeilleistung {
  16. const obj = JSON.parse(json);
  17. const result = new ENMTeilleistung();
  18. if (typeof obj.id === "undefined")
  19. throw new Error('invalid json format, missing attribute id');
  20. result.id = obj.id;
  21. if (typeof obj.artID === "undefined")
  22. throw new Error('invalid json format, missing attribute artID');
  23. result.artID = obj.artID;
  24. result.datum = typeof obj.datum === "undefined" ? null : obj.datum;
  25. result.bemerkung = typeof obj.bemerkung === "undefined" ? null : obj.bemerkung;
  26. result.notenKuerzel = typeof obj.notenKuerzel === "undefined" ? null : obj.notenKuerzel;
  27. return result;
  28. }
  29. public static transpilerToJSON(obj : ENMTeilleistung) : string {
  30. let result = '{';
  31. result += '"id" : ' + obj.id + ',';
  32. result += '"artID" : ' + obj.artID + ',';
  33. result += '"datum" : ' + ((!obj.datum) ? 'null' : '"' + obj.datum.valueOf() + '"') + ',';
  34. result += '"bemerkung" : ' + ((!obj.bemerkung) ? 'null' : '"' + obj.bemerkung.valueOf() + '"') + ',';
  35. result += '"notenKuerzel" : ' + ((!obj.notenKuerzel) ? 'null' : '"' + obj.notenKuerzel.valueOf() + '"') + ',';
  36. result = result.slice(0, -1);
  37. result += '}';
  38. return result;
  39. }
  40. public static transpilerToJSONPatch(obj : Partial<ENMTeilleistung>) : string {
  41. let result = '{';
  42. if (typeof obj.id !== "undefined") {
  43. result += '"id" : ' + obj.id + ',';
  44. }
  45. if (typeof obj.artID !== "undefined") {
  46. result += '"artID" : ' + obj.artID + ',';
  47. }
  48. if (typeof obj.datum !== "undefined") {
  49. result += '"datum" : ' + ((!obj.datum) ? 'null' : '"' + obj.datum.valueOf() + '"') + ',';
  50. }
  51. if (typeof obj.bemerkung !== "undefined") {
  52. result += '"bemerkung" : ' + ((!obj.bemerkung) ? 'null' : '"' + obj.bemerkung.valueOf() + '"') + ',';
  53. }
  54. if (typeof obj.notenKuerzel !== "undefined") {
  55. result += '"notenKuerzel" : ' + ((!obj.notenKuerzel) ? 'null' : '"' + obj.notenKuerzel.valueOf() + '"') + ',';
  56. }
  57. result = result.slice(0, -1);
  58. result += '}';
  59. return result;
  60. }
  61. }
  62. export function cast_de_nrw_schule_svws_core_data_enm_ENMTeilleistung(obj : unknown) : ENMTeilleistung {
  63. return obj as ENMTeilleistung;
  64. }