Interface IInstrumentSetItem
The system entity for an instrument set item, which belongs to an instrument set definition
See https://help.lemonedge.com/help/financial-services-engine/entities/instrument-sets/set-items-view.html for more information
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.Products
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.InstrumentSetItem, "dbo.LT_InstrumentSetItems", "InstrumentSetItem", IsStandingDataEntity = false)]
[DefaultEntityIcon(ImageType.Filter)]
[EntityIndex(Name = "InsSet", ColumnNames = new string[] { "InstrumentSetID" }, IndexOrder = new IndexOrder[] { IndexOrder.Ascending }, IsClustered = false, IsUnique = false)]
public interface IInstrumentSetItem : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
CurrencyID
[Key] Links to ICurrency. Matches on any Instrument with this specified Currency
Declaration
[EntityProperty(SQLType.UniqueIdentifier, true)]
[EntityKeyProperty]
[EntityRelationship(EntityID.Currency, "ID", SingleJoinType.ZeroToOne, "Currency", "Instrument Set Items", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
[EntityDescription("Indicates only instruments with this currency will match.")]
Guid? CurrencyID { get; set; }
Property Value
Type | Description |
---|---|
Guid? |
Exclude
Indicates any matching Instruments should be excluded from the resulting set of matching Instruments for this Instrument Set
Declaration
[EntityProperty(SQLType.Bit, false)]
[EntityDescription("Indicates if the instrument from this filter should be excluded from the set overall.")]
[Required]
bool Exclude { get; set; }
Property Value
Type | Description |
---|---|
bool |
InstrumentID
[Key] Links to IInstrument. Specifically matches on an individual Instrument
Declaration
[EntityProperty(SQLType.UniqueIdentifier, true)]
[EntityKeyProperty]
[EntityRelationship(EntityID.Instrument, "ID", SingleJoinType.ZeroToOne, "Instrument", "Instrument Set Items", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
[EntityDescription("Indicates this specified instrument will match.")]
Guid? InstrumentID { get; set; }
Property Value
Type | Description |
---|---|
Guid? |
InstrumentSetID
[Key] Links to IInstrumentSet. The parent instrument set this item is a member of
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityKeyProperty]
[EntityRelationship(EntityID.InstrumentSet, "ID", SingleJoinType.One, "Instrument Set", "Instrument Set Item", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = true)]
[RequiredNoDefaultIDValidation]
[EntityDescription("The parent set.")]
Guid InstrumentSetID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
OwningEntityID
[Key] Links to IObjectEntity. Matches on any Instrument with this specified Owning Entity
Declaration
[EntityProperty(SQLType.UniqueIdentifier, true)]
[EntityKeyProperty]
[EntityRelationship(EntityID.ObjectEntity, "ID", SingleJoinType.ZeroToOne, "Owning Entity", "Instrument Set Items", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
[EntityDescription("Indicates only instruments with this owning entity will match.")]
Guid? OwningEntityID { get; set; }
Property Value
Type | Description |
---|---|
Guid? |