Skip to content
Snippets Groups Projects

Update to DCC Schema V3.2

Merged Jan Loewe requested to merge feat-dcc-v-3-2 into master
1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
+ 6
0
@@ -485,6 +485,9 @@ export class HashType extends DCCXMLElement {
referralID: DCCXMLElement;
procedure: DCCXMLElement;
value: DCCXMLElement;
description?: RichContentType;
inValidityRange?: DCCXMLBoolean;
traceable?: DCCXMLBoolean;
linkedReport?: HashType;
constructor(el: Partial<HashType> = {}) {
@@ -493,6 +496,9 @@ export class HashType extends DCCXMLElement {
this.referralID = new DCCXMLElement(el.referralID);
this.procedure = new DCCXMLElement(el.procedure);
this.value = new DCCXMLElement(el.value);
if (el.description) this.description = new RichContentType(el.description);
if (el.inValidityRange) this.inValidityRange = new DCCXMLBoolean(el.inValidityRange);
if (el.traceable) this.traceable = new DCCXMLBoolean(el.traceable);
if (el.linkedReport) this.linkedReport = new HashType(el.linkedReport);
}
}
Loading