Interface ITransactionAggregator
The system entity for a transaction aggregator, which defines values to aggregate
See https://web.lemonedge.com/help/transaction-aggregators/ 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.TransactionAggregator, "dbo.LT_TransactionAggregators", "TransactionAggregator", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "transaction-aggregators")]
[DefaultEntityIcon(ImageType.TransactionSigma)]
public interface ITransactionAggregator : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier
Properties
Description
A user friendly description of this Transaction Aggregator
Declaration
[EntityProperty(SQLType.NVarChar, (short)2000, true)]
[EntityDescription("A user friendly description of this transaction aggregator.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
[Key] The unique user friendly name for this Transaction Aggregator
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, false)]
[EntityDescription("The unique name of this transaction aggregator.")]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |