1
0
mirror of https://github.com/dnpm-dip/mv64e-mtb-dto-dotnet.git synced 2025-07-01 18:32:54 +00:00

Merge pull request #8 from pcvolkmer/update_datamodel

This commit is contained in:
2025-06-18 21:19:20 +02:00
committed by GitHub
2 changed files with 1591 additions and 1391 deletions

File diff suppressed because it is too large Load Diff

View File

@ -492,11 +492,11 @@ namespace MV64e.MTB
[JsonProperty("patient", Required = Required.Always)]
public Reference Patient { get; set; }
[JsonProperty("status", Required = Required.Always)]
[JsonProperty("status", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ClaimResponseStatusCoding Status { get; set; }
[JsonProperty("statusReason", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ClaimResponseStatusReasonCoding StatusReason { get; set; }
public List<ClaimResponseStatusReasonCoding> StatusReason { get; set; }
}
public partial class ClaimResponseStatusCoding
@ -1038,18 +1038,12 @@ namespace MV64e.MTB
public partial class IhcReport
{
[JsonProperty("blockIds", Required = Required.Always)]
public List<string> BlockIds { get; set; }
[JsonProperty("id", Required = Required.Always)]
public string Id { get; set; }
[JsonProperty("issuedOn", Required = Required.Always)]
public DateTimeOffset IssuedOn { get; set; }
[JsonProperty("journalId", Required = Required.Always)]
public string JournalId { get; set; }
[JsonProperty("patient", Required = Required.Always)]
public Reference Patient { get; set; }