ReviewReportRecord
type ReviewReportRecord = object
Description
Record of one review change.
Properties
Review record type.
- Value
string
null Review change value that is set for the "TextAdd" and "TextRem" types only.
- Date
number
null The time when this change was made.
- ReviewedElement
ApiParagraph | ApiTable
null Element that has been reviewed
Try It
var oReviewReportRecord1 = {Type: "TextRem", Value: "Hello, Mark!", Date: 1679941734161};
var oReviewReportRecord2 = {Type: "TextAdd", Value: "Dear Mr. Pottato.", Date: 1679941736189};
var oReviewReportRecord3 = {Type: "ParaRem", Date: 1679941755942};
var oReviewReportRecord4 = {Type: "TextPr", Date: 1679941757832};
var oReviewRecord = {
"John Smith" : [oReviewReportRecord1, oReviewReportRecord2],
"Mark Pottato" : [oReviewReportRecord3, oReviewReportRecord4]
};