Search Results for

    Show / Hide Table of Contents

    Interface ITransactionCodeProcessor

    The system entity for a transaction code processor, which holds custom processes to run during the processing of the transaction

    See https://help.lemonedge.com/help/settings/financial-services-transactions/transaction-codes/processors-view.html for more information

    Inherited Members
    IBaseEntity.AccountID
    IBaseEntity.ID
    IBaseEntity.LastUpdated
    IBaseEntity.ModifiedByUserID
    IBaseEntity.CanvasID
    IBaseEntity.GetLabel(String)
    IBaseEntity.SetLabel(String, String)
    IBaseEntity.SetSilentLabel(String, String)
    System.IEquatable<LemonEdge.API.Core.IBaseEntity>.Equals(LemonEdge.API.Core.IBaseEntity)
    System.ComponentModel.INotifyPropertyChanged.PropertyChanged
    System.ComponentModel.INotifyPropertyChanging.PropertyChanging
    ICloneableAsync.Clone(Object)
    ICloneableAsync.CopyFromSource(Object)
    ICanTrackProperties.HasTrackedPropertyChanged(String)
    ICanTrackProperties.OriginalTrackedPropertyValue(String)
    ICanTrackProperties.OriginalTrackedPropertyValue<T>(String)
    ICanTrackProperties.ClearTrackedOriginalValues()
    ICanTrackProperties.GetAllOriginalTrackedPropertyValues()
    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

    Extension Methods

    MiscExtensions.SetIfNotEqual<T, P>(T, Expression<Func<T, P>>, P)
    ReflectionExtensions.ClearEventInvocations(Object, String)
    StringExtensions.ToCSVFormatString(Object, Type)
    SQLExtensions.ToSQLValue(Object, Boolean)

    See Also

    ITransactionCode
    In This Article
    Back to top © LemonEdge Technology. All rights reserved.