Class UserAudit
Audit information
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class UserAudit
Properties
CreatedByUser
ID of the user who created the document.
Declaration
[JsonProperty("createdByUser", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string CreatedByUser { get; set; }
Property Value
string |
CreationDate
The date on which the document was created.
Declaration
[JsonProperty("creationDate", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public DateTime CreationDate { get; set; }
Property Value
DateTime |
ModificationDate
The last date on which the document was modified.
Declaration
[JsonProperty("modificationDate", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public DateTime ModificationDate { get; set; }
Property Value
DateTime |
ModifiedByUser
ID of the last user who modified the document.
Declaration
[JsonProperty("modifiedByUser", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string ModifiedByUser { get; set; }
Property Value
string |