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

feat(comments): add support for comments

parent be21ec0f
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ import { XMLElement } from "./XMLElement";
export class DigitalCalibrationCertificate extends XMLElement {
administrativeData: AdministrativeData;
measurementResults: any;
comments: XMLElement;
constructor(options: Partial<DigitalCalibrationCertificate> = {}) {
super(options);
......@@ -18,5 +19,8 @@ export class DigitalCalibrationCertificate extends XMLElement {
this.administrativeData = new AdministrativeData(options.administrativeData);
this.measurementResults = options.measurementResults;
if (this.comments)
this.comments = new XMLElement(options.comments);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment