Skip to content
Snippets Groups Projects
Unverified Commit d2563d8b authored by Jan Loewe's avatar Jan Loewe :speech_balloon:
Browse files

fix(statementMetaDataType): add missing location

parent 1cfd5ac0
No related branches found
No related tags found
No related merge requests found
......@@ -735,6 +735,7 @@ export class StatementMetaDataType extends DCCXMLElement {
data?: DataType;
nonSIDefinition?: DCCXMLElement;
nonSIUnit?: DCCXMLElement;
location?: LocationType;
constructor(el: Partial<StatementMetaDataType> = {}) {
super(el);
......@@ -756,6 +757,7 @@ export class StatementMetaDataType extends DCCXMLElement {
if (el.data) this.data = new DataType(el.data);
if (el.nonSIDefinition) this.nonSIDefinition = new DCCXMLElement(el.nonSIDefinition);
if (el.nonSIUnit) this.nonSIUnit = new DCCXMLElement(el.nonSIUnit);
if (el.location) this.location = new LocationType(el.location);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment