Class ModificationDetails
It contains change logs of document and form fields after an edit.
[DataContract]
public class ModificationDetails
- Inheritance
-
ModificationDetails
- Inherited Members
Constructors
ModificationDetails(int, int)
Initializes a new instance of the ModificationDetails class.
public ModificationDetails(int addedCount = 0, int removedCount = 0)
Parameters
Properties
AddedCount
Gets or sets the added count details.
[DataMember(Name = "addedCount", EmitDefaultValue = false)]
public int AddedCount { get; set; }
Property Value
- int
Gets the added count details.
RemovedCount
Gets or sets the removed count details.
[DataMember(Name = "removedCount", EmitDefaultValue = false)]
public int RemovedCount { get; set; }
Property Value
- int
Gets the removed count details.
Methods
ToJson()
Returns the JSON string presentation of the object.
public virtual string ToJson()
Returns
- string
JSON string presentation of the object.