Class RecipientChangeLog
It contains change logs of recipients after an edit.
[DataContract]
public class RecipientChangeLog
- Inheritance
-
RecipientChangeLog
- Inherited Members
Properties
Added
Gets or sets the added recipient details.
[DataMember(Name = "added", EmitDefaultValue = false)]
public List<RecipientDetails> Added { get; set; }
Property Value
- List<RecipientDetails>
Gets the added recipient details.
Removed
Gets or sets the removed recipient details.
[DataMember(Name = "removed", EmitDefaultValue = false)]
public List<RecipientDetails> Removed { get; set; }
Property Value
- List<RecipientDetails>
Gets the removed recipient details.
Methods
ToJson()
Returns the JSON string presentation of the object.
public virtual string ToJson()
Returns
- string
JSON string presentation of the object.