@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
32 lines • 889 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EditComment = void 0;
const index_1 = require("./../index");
class EditComment {
constructor(data) {
this.replyTo = (data.replyTo || []).map(index_1.ReplyToAnnotationEdit.fromJson);
}
static getReplyToDefault() {
return [];
}
static getReplyToDescription() {
return "";
}
static fromJson(data) {
if (data === undefined || data === null) {
return data;
}
return new EditComment(data);
}
toJson() {
var _a;
return {
'replyTo': (_a = this.replyTo) === null || _a === void 0 ? void 0 : _a.map((data) => data.toJson()),
};
}
clone() {
return EditComment.fromJson(this.toJson());
}
}
exports.EditComment = EditComment;
//# sourceMappingURL=EditComment.js.map