Class BlendTransactionToAllocation
Contains a breakdown of items a transaction should be created against including their allocation.
In the case of this being the only item a transaction is created against the RatioMultiplier would be 1
Inheritance
System.Object
BlendTransactionToAllocation
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 BlendTransactionToAllocation
Properties
RatioMultiplier
The amount to proportionally give this transaction
Declaration
public decimal RatioMultiplier { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
ToEntityID
The entity the transaction should be created against. If ToInstrumentID is not null then the OwningEntityID is used instead and this should be null
If ToInstrumentID is null this must have a value
Declaration
public Guid? ToEntityID { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
ToInstrumentID
The optional instrument to use when creating the transaction. If this is null, then ToEntityID must have a value, along with ToEntityPathID too
Declaration
public Guid? ToInstrumentID { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |