Skip to content
Snippets Groups Projects
Verified Commit 08d09b05 authored by Jan Loewe's avatar Jan Loewe :speech_balloon:
Browse files

fix(signature): add initial support for signatures

parent fad5f6ab
No related branches found
No related tags found
1 merge request!4Update to DCC Schema V3.2
......@@ -75,6 +75,7 @@ export class DigitalCalibrationCertificateType extends DCCXMLElement {
measurementResults: MeasurementResultListType;
comment?: DCCXMLElement;
document?: ByteDataType;
"ds:Signature"?: any;
constructor(el: Partial<DigitalCalibrationCertificateType> = {}) {
super(el);
......@@ -82,6 +83,7 @@ export class DigitalCalibrationCertificateType extends DCCXMLElement {
this.measurementResults = new MeasurementResultListType(el.measurementResults);
if (el.comment) this.comment = new DCCXMLElement(el.comment);
if (el.document) this.document = new ByteDataType(el.document);
if (el["ds:Signature"]) this["ds:Signature"] = el["ds:Signature"];
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment