Skip to content
Snippets Groups Projects
Commit 1059b66c authored by Moritz Jordan's avatar Moritz Jordan
Browse files

feat(primitiveQuantityType): add charsXMLList

parent 4ad8fab9
No related branches found
No related tags found
1 merge request!4Update to DCC Schema V3.2
......@@ -548,6 +548,7 @@ export class PrimitiveQuantityType extends DCCXMLElement {
// region choice
noQuantity?: RichContentType;
charsXMLList?: DCCXMLList;
/** Metadata element definition for a real measurement quantity.
*
* The following statements of a real quantity are possible.
......@@ -690,6 +691,7 @@ export class PrimitiveQuantityType extends DCCXMLElement {
// choice
if (el.noQuantity) this.noQuantity = new RichContentType(el.noQuantity);
else if (el.charsXMLList) this.charsXMLList = new DCCXMLList(el.charsXMLList);
else if (el.real) this.real = new si.RealQuantityType(el.real);
else if (el.hybrid) this.hybrid = new si.HybridType(el.hybrid);
else if (el.complex) this.complex = new si.ComplexQuantityType(el.complex);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment