Interface ITransactionCodeAllocateToTransactionValue
The system entity for a transaction code allocate to transaction entity, which holds settings for automatically creating a new transaction for entites that are being allocated to
See https://help.lemonedge.com/transaction-codes/ for more information
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.Transactions
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.TransactionCodeAllocateToTransactionValue, "dbo.LT_TransactionCodeAllocateToTransactionValues", "TransactionCodeAllocateToTransactionValue", IsStandingDataEntity = true)]
[DefaultEntityIcon(ImageType.TransactionCode)]
public interface ITransactionCodeAllocateToTransactionValue : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
AllocateToTransactionID
[Key] Links to ITransactionCodeAllocateToTransaction.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.TransactionCodeAllocateToTransaction, "ID", SingleJoinType.One, "Allocated To Transaction", "Allocated Transaction Code Values", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = false)]
[RequiredNoDefaultIDValidation]
[EntityKeyProperty]
Guid AllocateToTransactionID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
OffsetNegate
Indicates the offsetting transaction amount should be negated
Declaration
[EntityProperty(SQLType.Bit, false, "0")]
[EntityDescription("Indicates the offsetting transaction amount should be negated")]
bool OffsetNegate { get; set; }
Property Value
Type | Description |
---|---|
bool |
SourceTransactionCodeValueID
Links to ITransactionCodeValue.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.TransactionTypeValue, "ID", SingleJoinType.ZeroToOne, "Source Transaction Code Value", "Allocated Transaction Code Values", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = true, InheritPermissions = false)]
Guid SourceTransactionCodeValueID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
TargetTransactionCodeValueID
Links to ITransactionCodeValue.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.TransactionTypeValue, "ID", SingleJoinType.ZeroToOne, "Target Transaction Code Value", "Allocated Transaction Code Values", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = true, InheritPermissions = false)]
Guid TargetTransactionCodeValueID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
TransactionCodeID
[Key] Links to ITransactionCode. The parent transaction code this processor is a member of
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.TransactionCode, "ID", SingleJoinType.One, "Transaction Code", "Allocated Transaction Code Values", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = true, InheritPermissions = true)]
[RequiredNoDefaultIDValidation]
[EntityKeyProperty]
Guid TransactionCodeID { get; set; }
Property Value
Type | Description |
---|---|
Guid |