Interface ITransactionMatcher
The system entity for a transaction matcher, which defines how to filter a set of transactions
See https://help.lemonedge.com/help/settings/financial-services-processes/transaction-matchers/intro.html 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.TransactionMatcher, "dbo.LT_TransactionMatchers", "TransactionMatcher", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "help/settings/financial-services-processes/transaction-matchers/intro.html")]
[DefaultEntityIcon(ImageType.TransactionFilter)]
public interface ITransactionMatcher : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier
Properties
Description
A user friendly description of this Transaction Matcher
Declaration
[EntityProperty(SQLType.NVarChar, (short)2000, true)]
[EntityDescription("A user friendly description of this transaction matcher.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
The unique user friendly name for this Transaction Matcher
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, false)]
[EntityDescription("The unique name of this transaction matcher.")]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |