Interface ITransactionCodeProcessor
The system entity for a transaction code processor, which holds custom processes to run during the processing of the transaction
See https://web.lemonedge.com/help/transaction-code-processors/ for more information
Inherited Members
System.IEquatable<LemonEdge.API.Core.IBaseEntity>.Equals(LemonEdge.API.Core.IBaseEntity)
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
System.ComponentModel.INotifyPropertyChanging.PropertyChanging
Namespace: LemonEdge.API.Entities
Assembly: API.dll
Syntax
[EntityDefinition(EntityID.TransactionCodeProcessor, "dbo.LT_TransactionCodeProcessors", "TransactionCodeProcessor", IsStandingDataEntity = true)]
[DefaultEntityIcon(ImageType.Trigger)]
public interface ITransactionCodeProcessor : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
CustomAPIProcess
The TransactionProcessorExtender you've created using our API that implements your custom logic.
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, false)]
[EntityDescription("Indicates custom api process for this transaction code.")]
[Required]
string CustomAPIProcess { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Sequence
The order in which custom processors are executed in.
Declaration
[EntityProperty(SQLType.SmallInt, false)]
[EntityDescription("The order in which custom processors are executed in.")]
[EntitySequence]
short Sequence { get; set; }
Property Value
Type | Description |
---|---|
System.Int16 |
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, "TransactionCode", "ITransactionCodeProcessor", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = true)]
Guid TransactionCodeID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |