1
0
mirror of https://github.com/dnpm-dip/mv64e-mtb-dto-dotnet.git synced 2025-09-13 00:32:51 +00:00

feat: add submission type 'test'

This commit is contained in:
2025-08-19 16:03:26 +02:00
parent 6dfd28890a
commit 7f45e0e3a7
2 changed files with 1860 additions and 1140 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -2188,7 +2188,7 @@ namespace MV64e.MTB
public enum ConsentProvision { Deny, Permit };
public enum MvhSubmissionType { Addition, Correction, Followup, Initial };
public enum MvhSubmissionType { Addition, Correction, Followup, Initial, Test };
public enum MsiInterpretationCodingCode { MmrDeficient, MmrProficient, MsiHigh, MsiLow, Stable, Unknown };
@@ -4076,6 +4076,8 @@ namespace MV64e.MTB
return MvhSubmissionType.Followup;
case "initial":
return MvhSubmissionType.Initial;
case "test":
return MvhSubmissionType.Test;
}
throw new Exception("Cannot unmarshal type MvhSubmissionType");
}
@@ -4102,6 +4104,9 @@ namespace MV64e.MTB
case MvhSubmissionType.Initial:
serializer.Serialize(writer, "initial");
return;
case MvhSubmissionType.Test:
serializer.Serialize(writer, "test");
return;
}
throw new Exception("Cannot marshal type MvhSubmissionType");
}