Interface IInstrumentSetType
The system entity for an instrument set type, which is a grouping category for IInstrumentSet
See https://help.lemonedge.com/help/settings/financial-services-transactions/instrument-set-types/intro.html for more information
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.Products
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.InstrumentSetType, "dbo.LT_InstrumentSetTypes", "InstrumentSetType", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "help/settings/financial-services-transactions/instrument-set-types/intro.html")]
[DefaultEntityIcon(ImageType.ContractType)]
public interface IInstrumentSetType : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
Description
A user friendly description of this Instrument Set Type
Declaration
[EntityProperty(SQLType.NVarChar, 2000, true)]
[EntityDescription("A user friendly description of this set type.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
[Key] The unique user friendly name of this Instrument Set Type
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityDescription("The unique name of this set type.")]
[Required]
[EntityKeyProperty]
[Unique]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |