Class FinaliseTransactionsResult
The server task result for the finalise transactions task for either the entity or the entity set
Inherited Members
Namespace: LemonEdge.API.Core.Tasks.Results
Assembly: LemonEdge.API.dll
Syntax
public class FinaliseTransactionsResult : ServerTaskResult, ICloneable, ICloneable<FinaliseTransactionsResult>
Constructors
FinaliseTransactionsResult()
Declaration
public FinaliseTransactionsResult()
Properties
Base64SerialisedColumns
If the task is a list only task, the serialised columns of the csv file containing the transactions to finalise
Declaration
public string Base64SerialisedColumns { get; set; }
Property Value
Type | Description |
---|---|
string |
EntityID
EntityID for which to finalise transactions
Declaration
public Guid EntityID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
EntitySetID
EntitySetID for which to finalise transactions
Declaration
public Guid EntitySetID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
FileName
If the task is a list only task, the file name of the csv file containing the transactions to finalise
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
string |
FinaliseTransactionsType
Type of finalise transactions task
Declaration
public FinaliseTransactionsType FinaliseTransactionsType { get; set; }
Property Value
Type | Description |
---|---|
FinaliseTransactionsType |
UpToDate
Up to date for which to finalise transactions
Declaration
public DateTimeOffset UpToDate { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
Methods
CopyFromParam(SerializedParam)
Should be overridden by inheriting implementations to ensure all parameters values are copied from the specified
source
Declaration
protected override void CopyFromParam(SerializedParam source)
Parameters
Type | Name | Description |
---|---|---|
SerializedParam | source | The source instance of a SerializedParam that is of the same type as this one to copy parameter values from |
Overrides
Remarks
Used by the generic implementation of Clone()
CopyFromSource(FinaliseTransactionsResult)
Updates all properties in this item to have the same properties as the source object.
Declaration
public void CopyFromSource(FinaliseTransactionsResult source)
Parameters
Type | Name | Description |
---|---|---|
FinaliseTransactionsResult | source | The source object to copy all values from. |
CreateNewParam()
Must be implemented by inheriting classes to provide a new instance of the current class type.
Used when cloning this SerializedParam to create a new instance of the same type
Declaration
protected override SerializedParam CreateNewParam()
Returns
Type | Description |
---|---|
SerializedParam | A new instance of the current SerializedParam type |