Class LogDetail
LogDetail describes a single field change within Ticket object. Properties have JsonProperty attribute which helps to serialize changes for TicketLogJsonProvider.
Namespace: SuperOffice.Data.Private.TicketLogging
Assembly: SoDataBase.dll
Syntax
public class LogDetail : Object
Constructors
LogDetail(Int32, TicketLogFieldChange, String, String, Int32)
LogDetail describes a single field change within Ticket object. Properties have JsonProperty attribute which helps to serialize changes for TicketLogJsonProvider.
Declaration
public LogDetail(int id, TicketLogFieldChange logChange, string oldValue, string newValue, int extraFieldId = -1)
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | id | |
| TicketLogFieldChange | logChange | |
| String | oldValue | |
| String | newValue | |
| Int32 | extraFieldId |
Properties
EntityId
LogDetail describes a single field change within Ticket object. Properties have JsonProperty attribute which helps to serialize changes for TicketLogJsonProvider.
Declaration
public int EntityId { get; set; }
Property Value
| Type | Description |
|---|---|
| Int32 |
ExtraFieldId
LogDetail describes a single field change within Ticket object. Properties have JsonProperty attribute which helps to serialize changes for TicketLogJsonProvider.
Declaration
public int ExtraFieldId { get; set; }
Property Value
| Type | Description |
|---|---|
| Int32 |
LogChange
LogDetail describes a single field change within Ticket object. Properties have JsonProperty attribute which helps to serialize changes for TicketLogJsonProvider.
Declaration
public TicketLogFieldChange LogChange { get; set; }
Property Value
| Type | Description |
|---|---|
| TicketLogFieldChange |
NewValue
LogDetail describes a single field change within Ticket object. Properties have JsonProperty attribute which helps to serialize changes for TicketLogJsonProvider.
Declaration
public string NewValue { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
PrevValue
LogDetail describes a single field change within Ticket object. Properties have JsonProperty attribute which helps to serialize changes for TicketLogJsonProvider.
Declaration
public string PrevValue { get; set; }
Property Value
| Type | Description |
|---|---|
| String |