GostLeistungenFachwahl.d.ts 889 B

12345678910111213141516
  1. import { JavaObject } from '../../../java/lang/JavaObject';
  2. import { GostFach } from '../../../core/data/gost/GostFach';
  3. import { Vector } from '../../../java/util/Vector';
  4. import { GostLeistungenFachbelegung } from '../../../core/data/gost/GostLeistungenFachbelegung';
  5. export declare class GostLeistungenFachwahl extends JavaObject {
  6. fach: GostFach | null;
  7. abiturfach: Number | null;
  8. istFSNeu: boolean;
  9. readonly belegungen: Vector<GostLeistungenFachbelegung>;
  10. constructor();
  11. isTranspiledInstanceOf(name: string): boolean;
  12. static transpilerFromJSON(json: string): GostLeistungenFachwahl;
  13. static transpilerToJSON(obj: GostLeistungenFachwahl): string;
  14. static transpilerToJSONPatch(obj: Partial<GostLeistungenFachwahl>): string;
  15. }
  16. export declare function cast_de_nrw_schule_svws_core_data_gost_GostLeistungenFachwahl(obj: unknown): GostLeistungenFachwahl;