Class CmsTransaction
A transaction
Inherited Members
Namespace: Noxum.Nova.Cms.Client
Assembly: Noxum.Nova.Cms.Client.dll
Syntax
public class CmsTransaction
Properties
BranchRef
Get the branch this transaction has been committed on.
This may be null, if the transaction did not cover branch-specific data,
e.g. if only object permissions have been changed.
Declaration
[JsonPropertyName("branchRef")]
public int? BranchRef { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Comment
Get the transaction comment
Declaration
[JsonPropertyName("comment")]
public string Comment { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Id
Get the transaction ID
Declaration
[JsonPropertyName("id")]
public long Id { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
Timestamp
Get the transaction timestamp as UTC
Declaration
[JsonPropertyName("timestamp")]
public DateTime Timestamp { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
User
Get the transaction user name
Declaration
[JsonPropertyName("user")]
public string User { get; set; }
Property Value
| Type | Description |
|---|---|
| string |