Skip to content
Snippets Groups Projects
Commit 93683d17 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-3368 impl vorgang#header structure for E2E

parent 33e0d8a8
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,17 @@
"name": "Vorgang",
"status": "NEU",
"inCreation": false,
"header": {
"serviceKonto": {
"type": "OSI",
"postfachAddress": [{
"type": 1,
"identifier": {
"postfachId": "04d39269-81c5-4838-8b73-08d9567f06d7"
}
}]
}
},
"eingangs": [
{
"_id": "21c64d65-ee8e-4f29-90c7-eca24d9d1111",
......
......@@ -57,6 +57,7 @@ export class VorgangE2E {
status: VorgangStatusE2E;
aktenzeichen: string;
nummer: string;
header: VorgangHeaderE2E;
eingangs: EingangE2E[];
wiedervorlages: WiedervorlageE2E[];
kommentars: KommentarE2E[];
......@@ -64,6 +65,20 @@ export class VorgangE2E {
clientAttributes: ClientAttributesE2E;
}
export class VorgangHeaderE2E {
serviceKonto: ServiceKontoE2E;
}
export class ServiceKontoE2E {
type: string;
postfachAddress: PostfachAddressE2E[];
}
export class PostfachAddressE2E {
type: number;
identifier: ReadonlyMap<string, object>;
}
export class EingangE2E {
header: EingangHeaderE2E;
antragsteller?: AntragstellerE2E;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment