Class BlendTransactionValueTotals
Contains the values to allocate against new transactions
Inheritance
System.Object
BlendTransactionValueTotals
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: LemonEdge.API.Processors.Transactional
Assembly: API.dll
Syntax
public class BlendTransactionValueTotals
Properties
EffectiveDate
If this is the result of a sql wrapper, this holds the effective date for the transaction
Declaration
public DateTimeOffset? EffectiveDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTimeOffset> |
EntityID
If this is the result of a sql wrapper, this holds the entity id for the transaction
Declaration
public Guid? EntityID { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
InstrumentID
The instrument these values are for. If null then the values are for the set as a whole.
Declaration
public Guid? InstrumentID { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
PathID
If this is the result of a sql wrapper, this holds the path id for the transaction
Declaration
public Guid? PathID { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Values
The values to post to the new transaction in each currency by transaction type value
Declaration
public Dictionary<ITransactionTypeValue, (decimal? Local, decimal? Functional, decimal? Reporting)> Values { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<ITransactionTypeValue, System.ValueTuple<System.Nullable<System.Decimal>, System.Nullable<System.Decimal>, System.Nullable<System.Decimal>>> |