Files
qfixdpl/quickfix/gen/fix44/marketdataincrementalrefresh/MarketDataIncrementalRefresh.generated.go
2026-03-09 15:35:32 -03:00

4057 lines
121 KiB
Go

// Code generated by quickfix. DO NOT EDIT.
package marketdataincrementalrefresh
import (
"time"
"github.com/shopspring/decimal"
"quantex.com/qfixdpl/quickfix"
"quantex.com/qfixdpl/quickfix/gen/enum"
"quantex.com/qfixdpl/quickfix/gen/field"
"quantex.com/qfixdpl/quickfix/gen/fix44"
"quantex.com/qfixdpl/quickfix/gen/tag"
)
// MarketDataIncrementalRefresh is the fix44 MarketDataIncrementalRefresh type, MsgType = X.
type MarketDataIncrementalRefresh struct {
fix44.Header
*quickfix.Body
fix44.Trailer
Message *quickfix.Message
}
// FromMessage creates a MarketDataIncrementalRefresh from a quickfix.Message instance.
func FromMessage(m *quickfix.Message) MarketDataIncrementalRefresh {
return MarketDataIncrementalRefresh{
Header: fix44.Header{Header: &m.Header},
Body: &m.Body,
Trailer: fix44.Trailer{Trailer: &m.Trailer},
Message: m,
}
}
// ToMessage returns a quickfix.Message instance.
func (m MarketDataIncrementalRefresh) ToMessage() *quickfix.Message {
return m.Message
}
// New returns a MarketDataIncrementalRefresh initialized with the required fields for MarketDataIncrementalRefresh.
func New() (m MarketDataIncrementalRefresh) {
m.Message = quickfix.NewMessage()
m.Header = fix44.NewHeader(&m.Message.Header)
m.Body = &m.Message.Body
m.Trailer.Trailer = &m.Message.Trailer
m.Header.Set(field.NewMsgType("X"))
return
}
// A RouteOut is the callback type that should be implemented for routing Message.
type RouteOut func(msg MarketDataIncrementalRefresh, sessionID quickfix.SessionID) quickfix.MessageRejectError
// Route returns the beginstring, message type, and MessageRoute for this Message type.
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
r := func(msg *quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
return router(FromMessage(msg), sessionID)
}
return "FIX.4.4", "X", r
}
// SetMDReqID sets MDReqID, Tag 262.
func (m MarketDataIncrementalRefresh) SetMDReqID(v string) {
m.Set(field.NewMDReqID(v))
}
// SetNoMDEntries sets NoMDEntries, Tag 268.
func (m MarketDataIncrementalRefresh) SetNoMDEntries(f NoMDEntriesRepeatingGroup) {
m.SetGroup(f)
}
// SetApplQueueDepth sets ApplQueueDepth, Tag 813.
func (m MarketDataIncrementalRefresh) SetApplQueueDepth(v int) {
m.Set(field.NewApplQueueDepth(v))
}
// SetApplQueueResolution sets ApplQueueResolution, Tag 814.
func (m MarketDataIncrementalRefresh) SetApplQueueResolution(v enum.ApplQueueResolution) {
m.Set(field.NewApplQueueResolution(v))
}
// GetMDReqID gets MDReqID, Tag 262.
func (m MarketDataIncrementalRefresh) GetMDReqID() (v string, err quickfix.MessageRejectError) {
var f field.MDReqIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoMDEntries gets NoMDEntries, Tag 268.
func (m MarketDataIncrementalRefresh) GetNoMDEntries() (NoMDEntriesRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoMDEntriesRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetApplQueueDepth gets ApplQueueDepth, Tag 813.
func (m MarketDataIncrementalRefresh) GetApplQueueDepth() (v int, err quickfix.MessageRejectError) {
var f field.ApplQueueDepthField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetApplQueueResolution gets ApplQueueResolution, Tag 814.
func (m MarketDataIncrementalRefresh) GetApplQueueResolution() (v enum.ApplQueueResolution, err quickfix.MessageRejectError) {
var f field.ApplQueueResolutionField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasMDReqID returns true if MDReqID is present, Tag 262.
func (m MarketDataIncrementalRefresh) HasMDReqID() bool {
return m.Has(tag.MDReqID)
}
// HasNoMDEntries returns true if NoMDEntries is present, Tag 268.
func (m MarketDataIncrementalRefresh) HasNoMDEntries() bool {
return m.Has(tag.NoMDEntries)
}
// HasApplQueueDepth returns true if ApplQueueDepth is present, Tag 813.
func (m MarketDataIncrementalRefresh) HasApplQueueDepth() bool {
return m.Has(tag.ApplQueueDepth)
}
// HasApplQueueResolution returns true if ApplQueueResolution is present, Tag 814.
func (m MarketDataIncrementalRefresh) HasApplQueueResolution() bool {
return m.Has(tag.ApplQueueResolution)
}
// NoMDEntries is a repeating group element, Tag 268.
type NoMDEntries struct {
*quickfix.Group
}
// SetMDUpdateAction sets MDUpdateAction, Tag 279.
func (m NoMDEntries) SetMDUpdateAction(v enum.MDUpdateAction) {
m.Set(field.NewMDUpdateAction(v))
}
// SetDeleteReason sets DeleteReason, Tag 285.
func (m NoMDEntries) SetDeleteReason(v enum.DeleteReason) {
m.Set(field.NewDeleteReason(v))
}
// SetMDEntryType sets MDEntryType, Tag 269.
func (m NoMDEntries) SetMDEntryType(v enum.MDEntryType) {
m.Set(field.NewMDEntryType(v))
}
// SetMDEntryID sets MDEntryID, Tag 278.
func (m NoMDEntries) SetMDEntryID(v string) {
m.Set(field.NewMDEntryID(v))
}
// SetMDEntryRefID sets MDEntryRefID, Tag 280.
func (m NoMDEntries) SetMDEntryRefID(v string) {
m.Set(field.NewMDEntryRefID(v))
}
// SetSymbol sets Symbol, Tag 55.
func (m NoMDEntries) SetSymbol(v string) {
m.Set(field.NewSymbol(v))
}
// SetSymbolSfx sets SymbolSfx, Tag 65.
func (m NoMDEntries) SetSymbolSfx(v enum.SymbolSfx) {
m.Set(field.NewSymbolSfx(v))
}
// SetSecurityID sets SecurityID, Tag 48.
func (m NoMDEntries) SetSecurityID(v string) {
m.Set(field.NewSecurityID(v))
}
// SetSecurityIDSource sets SecurityIDSource, Tag 22.
func (m NoMDEntries) SetSecurityIDSource(v enum.SecurityIDSource) {
m.Set(field.NewSecurityIDSource(v))
}
// SetNoSecurityAltID sets NoSecurityAltID, Tag 454.
func (m NoMDEntries) SetNoSecurityAltID(f NoSecurityAltIDRepeatingGroup) {
m.SetGroup(f)
}
// SetProduct sets Product, Tag 460.
func (m NoMDEntries) SetProduct(v enum.Product) {
m.Set(field.NewProduct(v))
}
// SetCFICode sets CFICode, Tag 461.
func (m NoMDEntries) SetCFICode(v string) {
m.Set(field.NewCFICode(v))
}
// SetSecurityType sets SecurityType, Tag 167.
func (m NoMDEntries) SetSecurityType(v enum.SecurityType) {
m.Set(field.NewSecurityType(v))
}
// SetSecuritySubType sets SecuritySubType, Tag 762.
func (m NoMDEntries) SetSecuritySubType(v string) {
m.Set(field.NewSecuritySubType(v))
}
// SetMaturityMonthYear sets MaturityMonthYear, Tag 200.
func (m NoMDEntries) SetMaturityMonthYear(v string) {
m.Set(field.NewMaturityMonthYear(v))
}
// SetMaturityDate sets MaturityDate, Tag 541.
func (m NoMDEntries) SetMaturityDate(v string) {
m.Set(field.NewMaturityDate(v))
}
// SetCouponPaymentDate sets CouponPaymentDate, Tag 224.
func (m NoMDEntries) SetCouponPaymentDate(v string) {
m.Set(field.NewCouponPaymentDate(v))
}
// SetIssueDate sets IssueDate, Tag 225.
func (m NoMDEntries) SetIssueDate(v string) {
m.Set(field.NewIssueDate(v))
}
// SetRepoCollateralSecurityType sets RepoCollateralSecurityType, Tag 239.
func (m NoMDEntries) SetRepoCollateralSecurityType(v int) {
m.Set(field.NewRepoCollateralSecurityType(v))
}
// SetRepurchaseTerm sets RepurchaseTerm, Tag 226.
func (m NoMDEntries) SetRepurchaseTerm(v int) {
m.Set(field.NewRepurchaseTerm(v))
}
// SetRepurchaseRate sets RepurchaseRate, Tag 227.
func (m NoMDEntries) SetRepurchaseRate(value decimal.Decimal, scale int32) {
m.Set(field.NewRepurchaseRate(value, scale))
}
// SetFactor sets Factor, Tag 228.
func (m NoMDEntries) SetFactor(value decimal.Decimal, scale int32) {
m.Set(field.NewFactor(value, scale))
}
// SetCreditRating sets CreditRating, Tag 255.
func (m NoMDEntries) SetCreditRating(v string) {
m.Set(field.NewCreditRating(v))
}
// SetInstrRegistry sets InstrRegistry, Tag 543.
func (m NoMDEntries) SetInstrRegistry(v enum.InstrRegistry) {
m.Set(field.NewInstrRegistry(v))
}
// SetCountryOfIssue sets CountryOfIssue, Tag 470.
func (m NoMDEntries) SetCountryOfIssue(v string) {
m.Set(field.NewCountryOfIssue(v))
}
// SetStateOrProvinceOfIssue sets StateOrProvinceOfIssue, Tag 471.
func (m NoMDEntries) SetStateOrProvinceOfIssue(v string) {
m.Set(field.NewStateOrProvinceOfIssue(v))
}
// SetLocaleOfIssue sets LocaleOfIssue, Tag 472.
func (m NoMDEntries) SetLocaleOfIssue(v string) {
m.Set(field.NewLocaleOfIssue(v))
}
// SetRedemptionDate sets RedemptionDate, Tag 240.
func (m NoMDEntries) SetRedemptionDate(v string) {
m.Set(field.NewRedemptionDate(v))
}
// SetStrikePrice sets StrikePrice, Tag 202.
func (m NoMDEntries) SetStrikePrice(value decimal.Decimal, scale int32) {
m.Set(field.NewStrikePrice(value, scale))
}
// SetStrikeCurrency sets StrikeCurrency, Tag 947.
func (m NoMDEntries) SetStrikeCurrency(v string) {
m.Set(field.NewStrikeCurrency(v))
}
// SetOptAttribute sets OptAttribute, Tag 206.
func (m NoMDEntries) SetOptAttribute(v string) {
m.Set(field.NewOptAttribute(v))
}
// SetContractMultiplier sets ContractMultiplier, Tag 231.
func (m NoMDEntries) SetContractMultiplier(value decimal.Decimal, scale int32) {
m.Set(field.NewContractMultiplier(value, scale))
}
// SetCouponRate sets CouponRate, Tag 223.
func (m NoMDEntries) SetCouponRate(value decimal.Decimal, scale int32) {
m.Set(field.NewCouponRate(value, scale))
}
// SetSecurityExchange sets SecurityExchange, Tag 207.
func (m NoMDEntries) SetSecurityExchange(v string) {
m.Set(field.NewSecurityExchange(v))
}
// SetIssuer sets Issuer, Tag 106.
func (m NoMDEntries) SetIssuer(v string) {
m.Set(field.NewIssuer(v))
}
// SetEncodedIssuerLen sets EncodedIssuerLen, Tag 348.
func (m NoMDEntries) SetEncodedIssuerLen(v int) {
m.Set(field.NewEncodedIssuerLen(v))
}
// SetEncodedIssuer sets EncodedIssuer, Tag 349.
func (m NoMDEntries) SetEncodedIssuer(v string) {
m.Set(field.NewEncodedIssuer(v))
}
// SetSecurityDesc sets SecurityDesc, Tag 107.
func (m NoMDEntries) SetSecurityDesc(v string) {
m.Set(field.NewSecurityDesc(v))
}
// SetEncodedSecurityDescLen sets EncodedSecurityDescLen, Tag 350.
func (m NoMDEntries) SetEncodedSecurityDescLen(v int) {
m.Set(field.NewEncodedSecurityDescLen(v))
}
// SetEncodedSecurityDesc sets EncodedSecurityDesc, Tag 351.
func (m NoMDEntries) SetEncodedSecurityDesc(v string) {
m.Set(field.NewEncodedSecurityDesc(v))
}
// SetPool sets Pool, Tag 691.
func (m NoMDEntries) SetPool(v string) {
m.Set(field.NewPool(v))
}
// SetContractSettlMonth sets ContractSettlMonth, Tag 667.
func (m NoMDEntries) SetContractSettlMonth(v string) {
m.Set(field.NewContractSettlMonth(v))
}
// SetCPProgram sets CPProgram, Tag 875.
func (m NoMDEntries) SetCPProgram(v enum.CPProgram) {
m.Set(field.NewCPProgram(v))
}
// SetCPRegType sets CPRegType, Tag 876.
func (m NoMDEntries) SetCPRegType(v string) {
m.Set(field.NewCPRegType(v))
}
// SetNoEvents sets NoEvents, Tag 864.
func (m NoMDEntries) SetNoEvents(f NoEventsRepeatingGroup) {
m.SetGroup(f)
}
// SetDatedDate sets DatedDate, Tag 873.
func (m NoMDEntries) SetDatedDate(v string) {
m.Set(field.NewDatedDate(v))
}
// SetInterestAccrualDate sets InterestAccrualDate, Tag 874.
func (m NoMDEntries) SetInterestAccrualDate(v string) {
m.Set(field.NewInterestAccrualDate(v))
}
// SetNoUnderlyings sets NoUnderlyings, Tag 711.
func (m NoMDEntries) SetNoUnderlyings(f NoUnderlyingsRepeatingGroup) {
m.SetGroup(f)
}
// SetNoLegs sets NoLegs, Tag 555.
func (m NoMDEntries) SetNoLegs(f NoLegsRepeatingGroup) {
m.SetGroup(f)
}
// SetFinancialStatus sets FinancialStatus, Tag 291.
func (m NoMDEntries) SetFinancialStatus(v enum.FinancialStatus) {
m.Set(field.NewFinancialStatus(v))
}
// SetCorporateAction sets CorporateAction, Tag 292.
func (m NoMDEntries) SetCorporateAction(v enum.CorporateAction) {
m.Set(field.NewCorporateAction(v))
}
// SetMDEntryPx sets MDEntryPx, Tag 270.
func (m NoMDEntries) SetMDEntryPx(value decimal.Decimal, scale int32) {
m.Set(field.NewMDEntryPx(value, scale))
}
// SetCurrency sets Currency, Tag 15.
func (m NoMDEntries) SetCurrency(v string) {
m.Set(field.NewCurrency(v))
}
// SetMDEntrySize sets MDEntrySize, Tag 271.
func (m NoMDEntries) SetMDEntrySize(value decimal.Decimal, scale int32) {
m.Set(field.NewMDEntrySize(value, scale))
}
// SetMDEntryDate sets MDEntryDate, Tag 272.
func (m NoMDEntries) SetMDEntryDate(v string) {
m.Set(field.NewMDEntryDate(v))
}
// SetMDEntryTime sets MDEntryTime, Tag 273.
func (m NoMDEntries) SetMDEntryTime(v string) {
m.Set(field.NewMDEntryTime(v))
}
// SetTickDirection sets TickDirection, Tag 274.
func (m NoMDEntries) SetTickDirection(v enum.TickDirection) {
m.Set(field.NewTickDirection(v))
}
// SetMDMkt sets MDMkt, Tag 275.
func (m NoMDEntries) SetMDMkt(v string) {
m.Set(field.NewMDMkt(v))
}
// SetTradingSessionID sets TradingSessionID, Tag 336.
func (m NoMDEntries) SetTradingSessionID(v enum.TradingSessionID) {
m.Set(field.NewTradingSessionID(v))
}
// SetTradingSessionSubID sets TradingSessionSubID, Tag 625.
func (m NoMDEntries) SetTradingSessionSubID(v enum.TradingSessionSubID) {
m.Set(field.NewTradingSessionSubID(v))
}
// SetQuoteCondition sets QuoteCondition, Tag 276.
func (m NoMDEntries) SetQuoteCondition(v enum.QuoteCondition) {
m.Set(field.NewQuoteCondition(v))
}
// SetTradeCondition sets TradeCondition, Tag 277.
func (m NoMDEntries) SetTradeCondition(v enum.TradeCondition) {
m.Set(field.NewTradeCondition(v))
}
// SetMDEntryOriginator sets MDEntryOriginator, Tag 282.
func (m NoMDEntries) SetMDEntryOriginator(v string) {
m.Set(field.NewMDEntryOriginator(v))
}
// SetLocationID sets LocationID, Tag 283.
func (m NoMDEntries) SetLocationID(v string) {
m.Set(field.NewLocationID(v))
}
// SetDeskID sets DeskID, Tag 284.
func (m NoMDEntries) SetDeskID(v string) {
m.Set(field.NewDeskID(v))
}
// SetOpenCloseSettlFlag sets OpenCloseSettlFlag, Tag 286.
func (m NoMDEntries) SetOpenCloseSettlFlag(v enum.OpenCloseSettlFlag) {
m.Set(field.NewOpenCloseSettlFlag(v))
}
// SetTimeInForce sets TimeInForce, Tag 59.
func (m NoMDEntries) SetTimeInForce(v enum.TimeInForce) {
m.Set(field.NewTimeInForce(v))
}
// SetExpireDate sets ExpireDate, Tag 432.
func (m NoMDEntries) SetExpireDate(v string) {
m.Set(field.NewExpireDate(v))
}
// SetExpireTime sets ExpireTime, Tag 126.
func (m NoMDEntries) SetExpireTime(v time.Time) {
m.Set(field.NewExpireTime(v))
}
// SetMinQty sets MinQty, Tag 110.
func (m NoMDEntries) SetMinQty(value decimal.Decimal, scale int32) {
m.Set(field.NewMinQty(value, scale))
}
// SetExecInst sets ExecInst, Tag 18.
func (m NoMDEntries) SetExecInst(v enum.ExecInst) {
m.Set(field.NewExecInst(v))
}
// SetSellerDays sets SellerDays, Tag 287.
func (m NoMDEntries) SetSellerDays(v int) {
m.Set(field.NewSellerDays(v))
}
// SetOrderID sets OrderID, Tag 37.
func (m NoMDEntries) SetOrderID(v string) {
m.Set(field.NewOrderID(v))
}
// SetQuoteEntryID sets QuoteEntryID, Tag 299.
func (m NoMDEntries) SetQuoteEntryID(v string) {
m.Set(field.NewQuoteEntryID(v))
}
// SetMDEntryBuyer sets MDEntryBuyer, Tag 288.
func (m NoMDEntries) SetMDEntryBuyer(v string) {
m.Set(field.NewMDEntryBuyer(v))
}
// SetMDEntrySeller sets MDEntrySeller, Tag 289.
func (m NoMDEntries) SetMDEntrySeller(v string) {
m.Set(field.NewMDEntrySeller(v))
}
// SetNumberOfOrders sets NumberOfOrders, Tag 346.
func (m NoMDEntries) SetNumberOfOrders(v int) {
m.Set(field.NewNumberOfOrders(v))
}
// SetMDEntryPositionNo sets MDEntryPositionNo, Tag 290.
func (m NoMDEntries) SetMDEntryPositionNo(v int) {
m.Set(field.NewMDEntryPositionNo(v))
}
// SetScope sets Scope, Tag 546.
func (m NoMDEntries) SetScope(v enum.Scope) {
m.Set(field.NewScope(v))
}
// SetPriceDelta sets PriceDelta, Tag 811.
func (m NoMDEntries) SetPriceDelta(value decimal.Decimal, scale int32) {
m.Set(field.NewPriceDelta(value, scale))
}
// SetNetChgPrevDay sets NetChgPrevDay, Tag 451.
func (m NoMDEntries) SetNetChgPrevDay(value decimal.Decimal, scale int32) {
m.Set(field.NewNetChgPrevDay(value, scale))
}
// SetText sets Text, Tag 58.
func (m NoMDEntries) SetText(v string) {
m.Set(field.NewText(v))
}
// SetEncodedTextLen sets EncodedTextLen, Tag 354.
func (m NoMDEntries) SetEncodedTextLen(v int) {
m.Set(field.NewEncodedTextLen(v))
}
// SetEncodedText sets EncodedText, Tag 355.
func (m NoMDEntries) SetEncodedText(v string) {
m.Set(field.NewEncodedText(v))
}
// GetMDUpdateAction gets MDUpdateAction, Tag 279.
func (m NoMDEntries) GetMDUpdateAction() (v enum.MDUpdateAction, err quickfix.MessageRejectError) {
var f field.MDUpdateActionField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetDeleteReason gets DeleteReason, Tag 285.
func (m NoMDEntries) GetDeleteReason() (v enum.DeleteReason, err quickfix.MessageRejectError) {
var f field.DeleteReasonField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDEntryType gets MDEntryType, Tag 269.
func (m NoMDEntries) GetMDEntryType() (v enum.MDEntryType, err quickfix.MessageRejectError) {
var f field.MDEntryTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDEntryID gets MDEntryID, Tag 278.
func (m NoMDEntries) GetMDEntryID() (v string, err quickfix.MessageRejectError) {
var f field.MDEntryIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDEntryRefID gets MDEntryRefID, Tag 280.
func (m NoMDEntries) GetMDEntryRefID() (v string, err quickfix.MessageRejectError) {
var f field.MDEntryRefIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSymbol gets Symbol, Tag 55.
func (m NoMDEntries) GetSymbol() (v string, err quickfix.MessageRejectError) {
var f field.SymbolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSymbolSfx gets SymbolSfx, Tag 65.
func (m NoMDEntries) GetSymbolSfx() (v enum.SymbolSfx, err quickfix.MessageRejectError) {
var f field.SymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityID gets SecurityID, Tag 48.
func (m NoMDEntries) GetSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.SecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityIDSource gets SecurityIDSource, Tag 22.
func (m NoMDEntries) GetSecurityIDSource() (v enum.SecurityIDSource, err quickfix.MessageRejectError) {
var f field.SecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoSecurityAltID gets NoSecurityAltID, Tag 454.
func (m NoMDEntries) GetNoSecurityAltID() (NoSecurityAltIDRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoSecurityAltIDRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetProduct gets Product, Tag 460.
func (m NoMDEntries) GetProduct() (v enum.Product, err quickfix.MessageRejectError) {
var f field.ProductField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCFICode gets CFICode, Tag 461.
func (m NoMDEntries) GetCFICode() (v string, err quickfix.MessageRejectError) {
var f field.CFICodeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityType gets SecurityType, Tag 167.
func (m NoMDEntries) GetSecurityType() (v enum.SecurityType, err quickfix.MessageRejectError) {
var f field.SecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecuritySubType gets SecuritySubType, Tag 762.
func (m NoMDEntries) GetSecuritySubType() (v string, err quickfix.MessageRejectError) {
var f field.SecuritySubTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMaturityMonthYear gets MaturityMonthYear, Tag 200.
func (m NoMDEntries) GetMaturityMonthYear() (v string, err quickfix.MessageRejectError) {
var f field.MaturityMonthYearField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMaturityDate gets MaturityDate, Tag 541.
func (m NoMDEntries) GetMaturityDate() (v string, err quickfix.MessageRejectError) {
var f field.MaturityDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCouponPaymentDate gets CouponPaymentDate, Tag 224.
func (m NoMDEntries) GetCouponPaymentDate() (v string, err quickfix.MessageRejectError) {
var f field.CouponPaymentDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetIssueDate gets IssueDate, Tag 225.
func (m NoMDEntries) GetIssueDate() (v string, err quickfix.MessageRejectError) {
var f field.IssueDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRepoCollateralSecurityType gets RepoCollateralSecurityType, Tag 239.
func (m NoMDEntries) GetRepoCollateralSecurityType() (v int, err quickfix.MessageRejectError) {
var f field.RepoCollateralSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRepurchaseTerm gets RepurchaseTerm, Tag 226.
func (m NoMDEntries) GetRepurchaseTerm() (v int, err quickfix.MessageRejectError) {
var f field.RepurchaseTermField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRepurchaseRate gets RepurchaseRate, Tag 227.
func (m NoMDEntries) GetRepurchaseRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.RepurchaseRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetFactor gets Factor, Tag 228.
func (m NoMDEntries) GetFactor() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.FactorField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCreditRating gets CreditRating, Tag 255.
func (m NoMDEntries) GetCreditRating() (v string, err quickfix.MessageRejectError) {
var f field.CreditRatingField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetInstrRegistry gets InstrRegistry, Tag 543.
func (m NoMDEntries) GetInstrRegistry() (v enum.InstrRegistry, err quickfix.MessageRejectError) {
var f field.InstrRegistryField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCountryOfIssue gets CountryOfIssue, Tag 470.
func (m NoMDEntries) GetCountryOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.CountryOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetStateOrProvinceOfIssue gets StateOrProvinceOfIssue, Tag 471.
func (m NoMDEntries) GetStateOrProvinceOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.StateOrProvinceOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLocaleOfIssue gets LocaleOfIssue, Tag 472.
func (m NoMDEntries) GetLocaleOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.LocaleOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRedemptionDate gets RedemptionDate, Tag 240.
func (m NoMDEntries) GetRedemptionDate() (v string, err quickfix.MessageRejectError) {
var f field.RedemptionDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetStrikePrice gets StrikePrice, Tag 202.
func (m NoMDEntries) GetStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.StrikePriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetStrikeCurrency gets StrikeCurrency, Tag 947.
func (m NoMDEntries) GetStrikeCurrency() (v string, err quickfix.MessageRejectError) {
var f field.StrikeCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOptAttribute gets OptAttribute, Tag 206.
func (m NoMDEntries) GetOptAttribute() (v string, err quickfix.MessageRejectError) {
var f field.OptAttributeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetContractMultiplier gets ContractMultiplier, Tag 231.
func (m NoMDEntries) GetContractMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.ContractMultiplierField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCouponRate gets CouponRate, Tag 223.
func (m NoMDEntries) GetCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.CouponRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityExchange gets SecurityExchange, Tag 207.
func (m NoMDEntries) GetSecurityExchange() (v string, err quickfix.MessageRejectError) {
var f field.SecurityExchangeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetIssuer gets Issuer, Tag 106.
func (m NoMDEntries) GetIssuer() (v string, err quickfix.MessageRejectError) {
var f field.IssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedIssuerLen gets EncodedIssuerLen, Tag 348.
func (m NoMDEntries) GetEncodedIssuerLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedIssuerLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedIssuer gets EncodedIssuer, Tag 349.
func (m NoMDEntries) GetEncodedIssuer() (v string, err quickfix.MessageRejectError) {
var f field.EncodedIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityDesc gets SecurityDesc, Tag 107.
func (m NoMDEntries) GetSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.SecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedSecurityDescLen gets EncodedSecurityDescLen, Tag 350.
func (m NoMDEntries) GetEncodedSecurityDescLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedSecurityDescLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedSecurityDesc gets EncodedSecurityDesc, Tag 351.
func (m NoMDEntries) GetEncodedSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.EncodedSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPool gets Pool, Tag 691.
func (m NoMDEntries) GetPool() (v string, err quickfix.MessageRejectError) {
var f field.PoolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetContractSettlMonth gets ContractSettlMonth, Tag 667.
func (m NoMDEntries) GetContractSettlMonth() (v string, err quickfix.MessageRejectError) {
var f field.ContractSettlMonthField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCPProgram gets CPProgram, Tag 875.
func (m NoMDEntries) GetCPProgram() (v enum.CPProgram, err quickfix.MessageRejectError) {
var f field.CPProgramField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCPRegType gets CPRegType, Tag 876.
func (m NoMDEntries) GetCPRegType() (v string, err quickfix.MessageRejectError) {
var f field.CPRegTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoEvents gets NoEvents, Tag 864.
func (m NoMDEntries) GetNoEvents() (NoEventsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoEventsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetDatedDate gets DatedDate, Tag 873.
func (m NoMDEntries) GetDatedDate() (v string, err quickfix.MessageRejectError) {
var f field.DatedDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetInterestAccrualDate gets InterestAccrualDate, Tag 874.
func (m NoMDEntries) GetInterestAccrualDate() (v string, err quickfix.MessageRejectError) {
var f field.InterestAccrualDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoUnderlyings gets NoUnderlyings, Tag 711.
func (m NoMDEntries) GetNoUnderlyings() (NoUnderlyingsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoUnderlyingsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetNoLegs gets NoLegs, Tag 555.
func (m NoMDEntries) GetNoLegs() (NoLegsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoLegsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetFinancialStatus gets FinancialStatus, Tag 291.
func (m NoMDEntries) GetFinancialStatus() (v enum.FinancialStatus, err quickfix.MessageRejectError) {
var f field.FinancialStatusField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCorporateAction gets CorporateAction, Tag 292.
func (m NoMDEntries) GetCorporateAction() (v enum.CorporateAction, err quickfix.MessageRejectError) {
var f field.CorporateActionField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDEntryPx gets MDEntryPx, Tag 270.
func (m NoMDEntries) GetMDEntryPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.MDEntryPxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCurrency gets Currency, Tag 15.
func (m NoMDEntries) GetCurrency() (v string, err quickfix.MessageRejectError) {
var f field.CurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDEntrySize gets MDEntrySize, Tag 271.
func (m NoMDEntries) GetMDEntrySize() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.MDEntrySizeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDEntryDate gets MDEntryDate, Tag 272.
func (m NoMDEntries) GetMDEntryDate() (v string, err quickfix.MessageRejectError) {
var f field.MDEntryDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDEntryTime gets MDEntryTime, Tag 273.
func (m NoMDEntries) GetMDEntryTime() (v string, err quickfix.MessageRejectError) {
var f field.MDEntryTimeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTickDirection gets TickDirection, Tag 274.
func (m NoMDEntries) GetTickDirection() (v enum.TickDirection, err quickfix.MessageRejectError) {
var f field.TickDirectionField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDMkt gets MDMkt, Tag 275.
func (m NoMDEntries) GetMDMkt() (v string, err quickfix.MessageRejectError) {
var f field.MDMktField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTradingSessionID gets TradingSessionID, Tag 336.
func (m NoMDEntries) GetTradingSessionID() (v enum.TradingSessionID, err quickfix.MessageRejectError) {
var f field.TradingSessionIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTradingSessionSubID gets TradingSessionSubID, Tag 625.
func (m NoMDEntries) GetTradingSessionSubID() (v enum.TradingSessionSubID, err quickfix.MessageRejectError) {
var f field.TradingSessionSubIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetQuoteCondition gets QuoteCondition, Tag 276.
func (m NoMDEntries) GetQuoteCondition() (v enum.QuoteCondition, err quickfix.MessageRejectError) {
var f field.QuoteConditionField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTradeCondition gets TradeCondition, Tag 277.
func (m NoMDEntries) GetTradeCondition() (v enum.TradeCondition, err quickfix.MessageRejectError) {
var f field.TradeConditionField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDEntryOriginator gets MDEntryOriginator, Tag 282.
func (m NoMDEntries) GetMDEntryOriginator() (v string, err quickfix.MessageRejectError) {
var f field.MDEntryOriginatorField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLocationID gets LocationID, Tag 283.
func (m NoMDEntries) GetLocationID() (v string, err quickfix.MessageRejectError) {
var f field.LocationIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetDeskID gets DeskID, Tag 284.
func (m NoMDEntries) GetDeskID() (v string, err quickfix.MessageRejectError) {
var f field.DeskIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOpenCloseSettlFlag gets OpenCloseSettlFlag, Tag 286.
func (m NoMDEntries) GetOpenCloseSettlFlag() (v enum.OpenCloseSettlFlag, err quickfix.MessageRejectError) {
var f field.OpenCloseSettlFlagField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTimeInForce gets TimeInForce, Tag 59.
func (m NoMDEntries) GetTimeInForce() (v enum.TimeInForce, err quickfix.MessageRejectError) {
var f field.TimeInForceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetExpireDate gets ExpireDate, Tag 432.
func (m NoMDEntries) GetExpireDate() (v string, err quickfix.MessageRejectError) {
var f field.ExpireDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetExpireTime gets ExpireTime, Tag 126.
func (m NoMDEntries) GetExpireTime() (v time.Time, err quickfix.MessageRejectError) {
var f field.ExpireTimeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMinQty gets MinQty, Tag 110.
func (m NoMDEntries) GetMinQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.MinQtyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetExecInst gets ExecInst, Tag 18.
func (m NoMDEntries) GetExecInst() (v enum.ExecInst, err quickfix.MessageRejectError) {
var f field.ExecInstField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSellerDays gets SellerDays, Tag 287.
func (m NoMDEntries) GetSellerDays() (v int, err quickfix.MessageRejectError) {
var f field.SellerDaysField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOrderID gets OrderID, Tag 37.
func (m NoMDEntries) GetOrderID() (v string, err quickfix.MessageRejectError) {
var f field.OrderIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetQuoteEntryID gets QuoteEntryID, Tag 299.
func (m NoMDEntries) GetQuoteEntryID() (v string, err quickfix.MessageRejectError) {
var f field.QuoteEntryIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDEntryBuyer gets MDEntryBuyer, Tag 288.
func (m NoMDEntries) GetMDEntryBuyer() (v string, err quickfix.MessageRejectError) {
var f field.MDEntryBuyerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDEntrySeller gets MDEntrySeller, Tag 289.
func (m NoMDEntries) GetMDEntrySeller() (v string, err quickfix.MessageRejectError) {
var f field.MDEntrySellerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNumberOfOrders gets NumberOfOrders, Tag 346.
func (m NoMDEntries) GetNumberOfOrders() (v int, err quickfix.MessageRejectError) {
var f field.NumberOfOrdersField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMDEntryPositionNo gets MDEntryPositionNo, Tag 290.
func (m NoMDEntries) GetMDEntryPositionNo() (v int, err quickfix.MessageRejectError) {
var f field.MDEntryPositionNoField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetScope gets Scope, Tag 546.
func (m NoMDEntries) GetScope() (v enum.Scope, err quickfix.MessageRejectError) {
var f field.ScopeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPriceDelta gets PriceDelta, Tag 811.
func (m NoMDEntries) GetPriceDelta() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.PriceDeltaField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNetChgPrevDay gets NetChgPrevDay, Tag 451.
func (m NoMDEntries) GetNetChgPrevDay() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.NetChgPrevDayField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetText gets Text, Tag 58.
func (m NoMDEntries) GetText() (v string, err quickfix.MessageRejectError) {
var f field.TextField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedTextLen gets EncodedTextLen, Tag 354.
func (m NoMDEntries) GetEncodedTextLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedTextLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedText gets EncodedText, Tag 355.
func (m NoMDEntries) GetEncodedText() (v string, err quickfix.MessageRejectError) {
var f field.EncodedTextField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasMDUpdateAction returns true if MDUpdateAction is present, Tag 279.
func (m NoMDEntries) HasMDUpdateAction() bool {
return m.Has(tag.MDUpdateAction)
}
// HasDeleteReason returns true if DeleteReason is present, Tag 285.
func (m NoMDEntries) HasDeleteReason() bool {
return m.Has(tag.DeleteReason)
}
// HasMDEntryType returns true if MDEntryType is present, Tag 269.
func (m NoMDEntries) HasMDEntryType() bool {
return m.Has(tag.MDEntryType)
}
// HasMDEntryID returns true if MDEntryID is present, Tag 278.
func (m NoMDEntries) HasMDEntryID() bool {
return m.Has(tag.MDEntryID)
}
// HasMDEntryRefID returns true if MDEntryRefID is present, Tag 280.
func (m NoMDEntries) HasMDEntryRefID() bool {
return m.Has(tag.MDEntryRefID)
}
// HasSymbol returns true if Symbol is present, Tag 55.
func (m NoMDEntries) HasSymbol() bool {
return m.Has(tag.Symbol)
}
// HasSymbolSfx returns true if SymbolSfx is present, Tag 65.
func (m NoMDEntries) HasSymbolSfx() bool {
return m.Has(tag.SymbolSfx)
}
// HasSecurityID returns true if SecurityID is present, Tag 48.
func (m NoMDEntries) HasSecurityID() bool {
return m.Has(tag.SecurityID)
}
// HasSecurityIDSource returns true if SecurityIDSource is present, Tag 22.
func (m NoMDEntries) HasSecurityIDSource() bool {
return m.Has(tag.SecurityIDSource)
}
// HasNoSecurityAltID returns true if NoSecurityAltID is present, Tag 454.
func (m NoMDEntries) HasNoSecurityAltID() bool {
return m.Has(tag.NoSecurityAltID)
}
// HasProduct returns true if Product is present, Tag 460.
func (m NoMDEntries) HasProduct() bool {
return m.Has(tag.Product)
}
// HasCFICode returns true if CFICode is present, Tag 461.
func (m NoMDEntries) HasCFICode() bool {
return m.Has(tag.CFICode)
}
// HasSecurityType returns true if SecurityType is present, Tag 167.
func (m NoMDEntries) HasSecurityType() bool {
return m.Has(tag.SecurityType)
}
// HasSecuritySubType returns true if SecuritySubType is present, Tag 762.
func (m NoMDEntries) HasSecuritySubType() bool {
return m.Has(tag.SecuritySubType)
}
// HasMaturityMonthYear returns true if MaturityMonthYear is present, Tag 200.
func (m NoMDEntries) HasMaturityMonthYear() bool {
return m.Has(tag.MaturityMonthYear)
}
// HasMaturityDate returns true if MaturityDate is present, Tag 541.
func (m NoMDEntries) HasMaturityDate() bool {
return m.Has(tag.MaturityDate)
}
// HasCouponPaymentDate returns true if CouponPaymentDate is present, Tag 224.
func (m NoMDEntries) HasCouponPaymentDate() bool {
return m.Has(tag.CouponPaymentDate)
}
// HasIssueDate returns true if IssueDate is present, Tag 225.
func (m NoMDEntries) HasIssueDate() bool {
return m.Has(tag.IssueDate)
}
// HasRepoCollateralSecurityType returns true if RepoCollateralSecurityType is present, Tag 239.
func (m NoMDEntries) HasRepoCollateralSecurityType() bool {
return m.Has(tag.RepoCollateralSecurityType)
}
// HasRepurchaseTerm returns true if RepurchaseTerm is present, Tag 226.
func (m NoMDEntries) HasRepurchaseTerm() bool {
return m.Has(tag.RepurchaseTerm)
}
// HasRepurchaseRate returns true if RepurchaseRate is present, Tag 227.
func (m NoMDEntries) HasRepurchaseRate() bool {
return m.Has(tag.RepurchaseRate)
}
// HasFactor returns true if Factor is present, Tag 228.
func (m NoMDEntries) HasFactor() bool {
return m.Has(tag.Factor)
}
// HasCreditRating returns true if CreditRating is present, Tag 255.
func (m NoMDEntries) HasCreditRating() bool {
return m.Has(tag.CreditRating)
}
// HasInstrRegistry returns true if InstrRegistry is present, Tag 543.
func (m NoMDEntries) HasInstrRegistry() bool {
return m.Has(tag.InstrRegistry)
}
// HasCountryOfIssue returns true if CountryOfIssue is present, Tag 470.
func (m NoMDEntries) HasCountryOfIssue() bool {
return m.Has(tag.CountryOfIssue)
}
// HasStateOrProvinceOfIssue returns true if StateOrProvinceOfIssue is present, Tag 471.
func (m NoMDEntries) HasStateOrProvinceOfIssue() bool {
return m.Has(tag.StateOrProvinceOfIssue)
}
// HasLocaleOfIssue returns true if LocaleOfIssue is present, Tag 472.
func (m NoMDEntries) HasLocaleOfIssue() bool {
return m.Has(tag.LocaleOfIssue)
}
// HasRedemptionDate returns true if RedemptionDate is present, Tag 240.
func (m NoMDEntries) HasRedemptionDate() bool {
return m.Has(tag.RedemptionDate)
}
// HasStrikePrice returns true if StrikePrice is present, Tag 202.
func (m NoMDEntries) HasStrikePrice() bool {
return m.Has(tag.StrikePrice)
}
// HasStrikeCurrency returns true if StrikeCurrency is present, Tag 947.
func (m NoMDEntries) HasStrikeCurrency() bool {
return m.Has(tag.StrikeCurrency)
}
// HasOptAttribute returns true if OptAttribute is present, Tag 206.
func (m NoMDEntries) HasOptAttribute() bool {
return m.Has(tag.OptAttribute)
}
// HasContractMultiplier returns true if ContractMultiplier is present, Tag 231.
func (m NoMDEntries) HasContractMultiplier() bool {
return m.Has(tag.ContractMultiplier)
}
// HasCouponRate returns true if CouponRate is present, Tag 223.
func (m NoMDEntries) HasCouponRate() bool {
return m.Has(tag.CouponRate)
}
// HasSecurityExchange returns true if SecurityExchange is present, Tag 207.
func (m NoMDEntries) HasSecurityExchange() bool {
return m.Has(tag.SecurityExchange)
}
// HasIssuer returns true if Issuer is present, Tag 106.
func (m NoMDEntries) HasIssuer() bool {
return m.Has(tag.Issuer)
}
// HasEncodedIssuerLen returns true if EncodedIssuerLen is present, Tag 348.
func (m NoMDEntries) HasEncodedIssuerLen() bool {
return m.Has(tag.EncodedIssuerLen)
}
// HasEncodedIssuer returns true if EncodedIssuer is present, Tag 349.
func (m NoMDEntries) HasEncodedIssuer() bool {
return m.Has(tag.EncodedIssuer)
}
// HasSecurityDesc returns true if SecurityDesc is present, Tag 107.
func (m NoMDEntries) HasSecurityDesc() bool {
return m.Has(tag.SecurityDesc)
}
// HasEncodedSecurityDescLen returns true if EncodedSecurityDescLen is present, Tag 350.
func (m NoMDEntries) HasEncodedSecurityDescLen() bool {
return m.Has(tag.EncodedSecurityDescLen)
}
// HasEncodedSecurityDesc returns true if EncodedSecurityDesc is present, Tag 351.
func (m NoMDEntries) HasEncodedSecurityDesc() bool {
return m.Has(tag.EncodedSecurityDesc)
}
// HasPool returns true if Pool is present, Tag 691.
func (m NoMDEntries) HasPool() bool {
return m.Has(tag.Pool)
}
// HasContractSettlMonth returns true if ContractSettlMonth is present, Tag 667.
func (m NoMDEntries) HasContractSettlMonth() bool {
return m.Has(tag.ContractSettlMonth)
}
// HasCPProgram returns true if CPProgram is present, Tag 875.
func (m NoMDEntries) HasCPProgram() bool {
return m.Has(tag.CPProgram)
}
// HasCPRegType returns true if CPRegType is present, Tag 876.
func (m NoMDEntries) HasCPRegType() bool {
return m.Has(tag.CPRegType)
}
// HasNoEvents returns true if NoEvents is present, Tag 864.
func (m NoMDEntries) HasNoEvents() bool {
return m.Has(tag.NoEvents)
}
// HasDatedDate returns true if DatedDate is present, Tag 873.
func (m NoMDEntries) HasDatedDate() bool {
return m.Has(tag.DatedDate)
}
// HasInterestAccrualDate returns true if InterestAccrualDate is present, Tag 874.
func (m NoMDEntries) HasInterestAccrualDate() bool {
return m.Has(tag.InterestAccrualDate)
}
// HasNoUnderlyings returns true if NoUnderlyings is present, Tag 711.
func (m NoMDEntries) HasNoUnderlyings() bool {
return m.Has(tag.NoUnderlyings)
}
// HasNoLegs returns true if NoLegs is present, Tag 555.
func (m NoMDEntries) HasNoLegs() bool {
return m.Has(tag.NoLegs)
}
// HasFinancialStatus returns true if FinancialStatus is present, Tag 291.
func (m NoMDEntries) HasFinancialStatus() bool {
return m.Has(tag.FinancialStatus)
}
// HasCorporateAction returns true if CorporateAction is present, Tag 292.
func (m NoMDEntries) HasCorporateAction() bool {
return m.Has(tag.CorporateAction)
}
// HasMDEntryPx returns true if MDEntryPx is present, Tag 270.
func (m NoMDEntries) HasMDEntryPx() bool {
return m.Has(tag.MDEntryPx)
}
// HasCurrency returns true if Currency is present, Tag 15.
func (m NoMDEntries) HasCurrency() bool {
return m.Has(tag.Currency)
}
// HasMDEntrySize returns true if MDEntrySize is present, Tag 271.
func (m NoMDEntries) HasMDEntrySize() bool {
return m.Has(tag.MDEntrySize)
}
// HasMDEntryDate returns true if MDEntryDate is present, Tag 272.
func (m NoMDEntries) HasMDEntryDate() bool {
return m.Has(tag.MDEntryDate)
}
// HasMDEntryTime returns true if MDEntryTime is present, Tag 273.
func (m NoMDEntries) HasMDEntryTime() bool {
return m.Has(tag.MDEntryTime)
}
// HasTickDirection returns true if TickDirection is present, Tag 274.
func (m NoMDEntries) HasTickDirection() bool {
return m.Has(tag.TickDirection)
}
// HasMDMkt returns true if MDMkt is present, Tag 275.
func (m NoMDEntries) HasMDMkt() bool {
return m.Has(tag.MDMkt)
}
// HasTradingSessionID returns true if TradingSessionID is present, Tag 336.
func (m NoMDEntries) HasTradingSessionID() bool {
return m.Has(tag.TradingSessionID)
}
// HasTradingSessionSubID returns true if TradingSessionSubID is present, Tag 625.
func (m NoMDEntries) HasTradingSessionSubID() bool {
return m.Has(tag.TradingSessionSubID)
}
// HasQuoteCondition returns true if QuoteCondition is present, Tag 276.
func (m NoMDEntries) HasQuoteCondition() bool {
return m.Has(tag.QuoteCondition)
}
// HasTradeCondition returns true if TradeCondition is present, Tag 277.
func (m NoMDEntries) HasTradeCondition() bool {
return m.Has(tag.TradeCondition)
}
// HasMDEntryOriginator returns true if MDEntryOriginator is present, Tag 282.
func (m NoMDEntries) HasMDEntryOriginator() bool {
return m.Has(tag.MDEntryOriginator)
}
// HasLocationID returns true if LocationID is present, Tag 283.
func (m NoMDEntries) HasLocationID() bool {
return m.Has(tag.LocationID)
}
// HasDeskID returns true if DeskID is present, Tag 284.
func (m NoMDEntries) HasDeskID() bool {
return m.Has(tag.DeskID)
}
// HasOpenCloseSettlFlag returns true if OpenCloseSettlFlag is present, Tag 286.
func (m NoMDEntries) HasOpenCloseSettlFlag() bool {
return m.Has(tag.OpenCloseSettlFlag)
}
// HasTimeInForce returns true if TimeInForce is present, Tag 59.
func (m NoMDEntries) HasTimeInForce() bool {
return m.Has(tag.TimeInForce)
}
// HasExpireDate returns true if ExpireDate is present, Tag 432.
func (m NoMDEntries) HasExpireDate() bool {
return m.Has(tag.ExpireDate)
}
// HasExpireTime returns true if ExpireTime is present, Tag 126.
func (m NoMDEntries) HasExpireTime() bool {
return m.Has(tag.ExpireTime)
}
// HasMinQty returns true if MinQty is present, Tag 110.
func (m NoMDEntries) HasMinQty() bool {
return m.Has(tag.MinQty)
}
// HasExecInst returns true if ExecInst is present, Tag 18.
func (m NoMDEntries) HasExecInst() bool {
return m.Has(tag.ExecInst)
}
// HasSellerDays returns true if SellerDays is present, Tag 287.
func (m NoMDEntries) HasSellerDays() bool {
return m.Has(tag.SellerDays)
}
// HasOrderID returns true if OrderID is present, Tag 37.
func (m NoMDEntries) HasOrderID() bool {
return m.Has(tag.OrderID)
}
// HasQuoteEntryID returns true if QuoteEntryID is present, Tag 299.
func (m NoMDEntries) HasQuoteEntryID() bool {
return m.Has(tag.QuoteEntryID)
}
// HasMDEntryBuyer returns true if MDEntryBuyer is present, Tag 288.
func (m NoMDEntries) HasMDEntryBuyer() bool {
return m.Has(tag.MDEntryBuyer)
}
// HasMDEntrySeller returns true if MDEntrySeller is present, Tag 289.
func (m NoMDEntries) HasMDEntrySeller() bool {
return m.Has(tag.MDEntrySeller)
}
// HasNumberOfOrders returns true if NumberOfOrders is present, Tag 346.
func (m NoMDEntries) HasNumberOfOrders() bool {
return m.Has(tag.NumberOfOrders)
}
// HasMDEntryPositionNo returns true if MDEntryPositionNo is present, Tag 290.
func (m NoMDEntries) HasMDEntryPositionNo() bool {
return m.Has(tag.MDEntryPositionNo)
}
// HasScope returns true if Scope is present, Tag 546.
func (m NoMDEntries) HasScope() bool {
return m.Has(tag.Scope)
}
// HasPriceDelta returns true if PriceDelta is present, Tag 811.
func (m NoMDEntries) HasPriceDelta() bool {
return m.Has(tag.PriceDelta)
}
// HasNetChgPrevDay returns true if NetChgPrevDay is present, Tag 451.
func (m NoMDEntries) HasNetChgPrevDay() bool {
return m.Has(tag.NetChgPrevDay)
}
// HasText returns true if Text is present, Tag 58.
func (m NoMDEntries) HasText() bool {
return m.Has(tag.Text)
}
// HasEncodedTextLen returns true if EncodedTextLen is present, Tag 354.
func (m NoMDEntries) HasEncodedTextLen() bool {
return m.Has(tag.EncodedTextLen)
}
// HasEncodedText returns true if EncodedText is present, Tag 355.
func (m NoMDEntries) HasEncodedText() bool {
return m.Has(tag.EncodedText)
}
// NoSecurityAltID is a repeating group element, Tag 454.
type NoSecurityAltID struct {
*quickfix.Group
}
// SetSecurityAltID sets SecurityAltID, Tag 455.
func (m NoSecurityAltID) SetSecurityAltID(v string) {
m.Set(field.NewSecurityAltID(v))
}
// SetSecurityAltIDSource sets SecurityAltIDSource, Tag 456.
func (m NoSecurityAltID) SetSecurityAltIDSource(v string) {
m.Set(field.NewSecurityAltIDSource(v))
}
// GetSecurityAltID gets SecurityAltID, Tag 455.
func (m NoSecurityAltID) GetSecurityAltID() (v string, err quickfix.MessageRejectError) {
var f field.SecurityAltIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityAltIDSource gets SecurityAltIDSource, Tag 456.
func (m NoSecurityAltID) GetSecurityAltIDSource() (v string, err quickfix.MessageRejectError) {
var f field.SecurityAltIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasSecurityAltID returns true if SecurityAltID is present, Tag 455.
func (m NoSecurityAltID) HasSecurityAltID() bool {
return m.Has(tag.SecurityAltID)
}
// HasSecurityAltIDSource returns true if SecurityAltIDSource is present, Tag 456.
func (m NoSecurityAltID) HasSecurityAltIDSource() bool {
return m.Has(tag.SecurityAltIDSource)
}
// NoSecurityAltIDRepeatingGroup is a repeating group, Tag 454.
type NoSecurityAltIDRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoSecurityAltIDRepeatingGroup returns an initialized, NoSecurityAltIDRepeatingGroup.
func NewNoSecurityAltIDRepeatingGroup() NoSecurityAltIDRepeatingGroup {
return NoSecurityAltIDRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoSecurityAltID,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.SecurityAltID),
quickfix.GroupElement(tag.SecurityAltIDSource),
},
),
}
}
// Add create and append a new NoSecurityAltID to this group.
func (m NoSecurityAltIDRepeatingGroup) Add() NoSecurityAltID {
g := m.RepeatingGroup.Add()
return NoSecurityAltID{g}
}
// Get returns the ith NoSecurityAltID in the NoSecurityAltIDRepeatinGroup.
func (m NoSecurityAltIDRepeatingGroup) Get(i int) NoSecurityAltID {
return NoSecurityAltID{m.RepeatingGroup.Get(i)}
}
// NoEvents is a repeating group element, Tag 864.
type NoEvents struct {
*quickfix.Group
}
// SetEventType sets EventType, Tag 865.
func (m NoEvents) SetEventType(v enum.EventType) {
m.Set(field.NewEventType(v))
}
// SetEventDate sets EventDate, Tag 866.
func (m NoEvents) SetEventDate(v string) {
m.Set(field.NewEventDate(v))
}
// SetEventPx sets EventPx, Tag 867.
func (m NoEvents) SetEventPx(value decimal.Decimal, scale int32) {
m.Set(field.NewEventPx(value, scale))
}
// SetEventText sets EventText, Tag 868.
func (m NoEvents) SetEventText(v string) {
m.Set(field.NewEventText(v))
}
// GetEventType gets EventType, Tag 865.
func (m NoEvents) GetEventType() (v enum.EventType, err quickfix.MessageRejectError) {
var f field.EventTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEventDate gets EventDate, Tag 866.
func (m NoEvents) GetEventDate() (v string, err quickfix.MessageRejectError) {
var f field.EventDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEventPx gets EventPx, Tag 867.
func (m NoEvents) GetEventPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.EventPxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEventText gets EventText, Tag 868.
func (m NoEvents) GetEventText() (v string, err quickfix.MessageRejectError) {
var f field.EventTextField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasEventType returns true if EventType is present, Tag 865.
func (m NoEvents) HasEventType() bool {
return m.Has(tag.EventType)
}
// HasEventDate returns true if EventDate is present, Tag 866.
func (m NoEvents) HasEventDate() bool {
return m.Has(tag.EventDate)
}
// HasEventPx returns true if EventPx is present, Tag 867.
func (m NoEvents) HasEventPx() bool {
return m.Has(tag.EventPx)
}
// HasEventText returns true if EventText is present, Tag 868.
func (m NoEvents) HasEventText() bool {
return m.Has(tag.EventText)
}
// NoEventsRepeatingGroup is a repeating group, Tag 864.
type NoEventsRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoEventsRepeatingGroup returns an initialized, NoEventsRepeatingGroup.
func NewNoEventsRepeatingGroup() NoEventsRepeatingGroup {
return NoEventsRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoEvents,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.EventType),
quickfix.GroupElement(tag.EventDate),
quickfix.GroupElement(tag.EventPx),
quickfix.GroupElement(tag.EventText),
},
),
}
}
// Add create and append a new NoEvents to this group.
func (m NoEventsRepeatingGroup) Add() NoEvents {
g := m.RepeatingGroup.Add()
return NoEvents{g}
}
// Get returns the ith NoEvents in the NoEventsRepeatinGroup.
func (m NoEventsRepeatingGroup) Get(i int) NoEvents {
return NoEvents{m.RepeatingGroup.Get(i)}
}
// NoUnderlyings is a repeating group element, Tag 711.
type NoUnderlyings struct {
*quickfix.Group
}
// SetUnderlyingSymbol sets UnderlyingSymbol, Tag 311.
func (m NoUnderlyings) SetUnderlyingSymbol(v string) {
m.Set(field.NewUnderlyingSymbol(v))
}
// SetUnderlyingSymbolSfx sets UnderlyingSymbolSfx, Tag 312.
func (m NoUnderlyings) SetUnderlyingSymbolSfx(v string) {
m.Set(field.NewUnderlyingSymbolSfx(v))
}
// SetUnderlyingSecurityID sets UnderlyingSecurityID, Tag 309.
func (m NoUnderlyings) SetUnderlyingSecurityID(v string) {
m.Set(field.NewUnderlyingSecurityID(v))
}
// SetUnderlyingSecurityIDSource sets UnderlyingSecurityIDSource, Tag 305.
func (m NoUnderlyings) SetUnderlyingSecurityIDSource(v string) {
m.Set(field.NewUnderlyingSecurityIDSource(v))
}
// SetNoUnderlyingSecurityAltID sets NoUnderlyingSecurityAltID, Tag 457.
func (m NoUnderlyings) SetNoUnderlyingSecurityAltID(f NoUnderlyingSecurityAltIDRepeatingGroup) {
m.SetGroup(f)
}
// SetUnderlyingProduct sets UnderlyingProduct, Tag 462.
func (m NoUnderlyings) SetUnderlyingProduct(v int) {
m.Set(field.NewUnderlyingProduct(v))
}
// SetUnderlyingCFICode sets UnderlyingCFICode, Tag 463.
func (m NoUnderlyings) SetUnderlyingCFICode(v string) {
m.Set(field.NewUnderlyingCFICode(v))
}
// SetUnderlyingSecurityType sets UnderlyingSecurityType, Tag 310.
func (m NoUnderlyings) SetUnderlyingSecurityType(v string) {
m.Set(field.NewUnderlyingSecurityType(v))
}
// SetUnderlyingSecuritySubType sets UnderlyingSecuritySubType, Tag 763.
func (m NoUnderlyings) SetUnderlyingSecuritySubType(v string) {
m.Set(field.NewUnderlyingSecuritySubType(v))
}
// SetUnderlyingMaturityMonthYear sets UnderlyingMaturityMonthYear, Tag 313.
func (m NoUnderlyings) SetUnderlyingMaturityMonthYear(v string) {
m.Set(field.NewUnderlyingMaturityMonthYear(v))
}
// SetUnderlyingMaturityDate sets UnderlyingMaturityDate, Tag 542.
func (m NoUnderlyings) SetUnderlyingMaturityDate(v string) {
m.Set(field.NewUnderlyingMaturityDate(v))
}
// SetUnderlyingCouponPaymentDate sets UnderlyingCouponPaymentDate, Tag 241.
func (m NoUnderlyings) SetUnderlyingCouponPaymentDate(v string) {
m.Set(field.NewUnderlyingCouponPaymentDate(v))
}
// SetUnderlyingIssueDate sets UnderlyingIssueDate, Tag 242.
func (m NoUnderlyings) SetUnderlyingIssueDate(v string) {
m.Set(field.NewUnderlyingIssueDate(v))
}
// SetUnderlyingRepoCollateralSecurityType sets UnderlyingRepoCollateralSecurityType, Tag 243.
func (m NoUnderlyings) SetUnderlyingRepoCollateralSecurityType(v int) {
m.Set(field.NewUnderlyingRepoCollateralSecurityType(v))
}
// SetUnderlyingRepurchaseTerm sets UnderlyingRepurchaseTerm, Tag 244.
func (m NoUnderlyings) SetUnderlyingRepurchaseTerm(v int) {
m.Set(field.NewUnderlyingRepurchaseTerm(v))
}
// SetUnderlyingRepurchaseRate sets UnderlyingRepurchaseRate, Tag 245.
func (m NoUnderlyings) SetUnderlyingRepurchaseRate(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingRepurchaseRate(value, scale))
}
// SetUnderlyingFactor sets UnderlyingFactor, Tag 246.
func (m NoUnderlyings) SetUnderlyingFactor(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingFactor(value, scale))
}
// SetUnderlyingCreditRating sets UnderlyingCreditRating, Tag 256.
func (m NoUnderlyings) SetUnderlyingCreditRating(v string) {
m.Set(field.NewUnderlyingCreditRating(v))
}
// SetUnderlyingInstrRegistry sets UnderlyingInstrRegistry, Tag 595.
func (m NoUnderlyings) SetUnderlyingInstrRegistry(v string) {
m.Set(field.NewUnderlyingInstrRegistry(v))
}
// SetUnderlyingCountryOfIssue sets UnderlyingCountryOfIssue, Tag 592.
func (m NoUnderlyings) SetUnderlyingCountryOfIssue(v string) {
m.Set(field.NewUnderlyingCountryOfIssue(v))
}
// SetUnderlyingStateOrProvinceOfIssue sets UnderlyingStateOrProvinceOfIssue, Tag 593.
func (m NoUnderlyings) SetUnderlyingStateOrProvinceOfIssue(v string) {
m.Set(field.NewUnderlyingStateOrProvinceOfIssue(v))
}
// SetUnderlyingLocaleOfIssue sets UnderlyingLocaleOfIssue, Tag 594.
func (m NoUnderlyings) SetUnderlyingLocaleOfIssue(v string) {
m.Set(field.NewUnderlyingLocaleOfIssue(v))
}
// SetUnderlyingRedemptionDate sets UnderlyingRedemptionDate, Tag 247.
func (m NoUnderlyings) SetUnderlyingRedemptionDate(v string) {
m.Set(field.NewUnderlyingRedemptionDate(v))
}
// SetUnderlyingStrikePrice sets UnderlyingStrikePrice, Tag 316.
func (m NoUnderlyings) SetUnderlyingStrikePrice(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingStrikePrice(value, scale))
}
// SetUnderlyingStrikeCurrency sets UnderlyingStrikeCurrency, Tag 941.
func (m NoUnderlyings) SetUnderlyingStrikeCurrency(v string) {
m.Set(field.NewUnderlyingStrikeCurrency(v))
}
// SetUnderlyingOptAttribute sets UnderlyingOptAttribute, Tag 317.
func (m NoUnderlyings) SetUnderlyingOptAttribute(v string) {
m.Set(field.NewUnderlyingOptAttribute(v))
}
// SetUnderlyingContractMultiplier sets UnderlyingContractMultiplier, Tag 436.
func (m NoUnderlyings) SetUnderlyingContractMultiplier(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingContractMultiplier(value, scale))
}
// SetUnderlyingCouponRate sets UnderlyingCouponRate, Tag 435.
func (m NoUnderlyings) SetUnderlyingCouponRate(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingCouponRate(value, scale))
}
// SetUnderlyingSecurityExchange sets UnderlyingSecurityExchange, Tag 308.
func (m NoUnderlyings) SetUnderlyingSecurityExchange(v string) {
m.Set(field.NewUnderlyingSecurityExchange(v))
}
// SetUnderlyingIssuer sets UnderlyingIssuer, Tag 306.
func (m NoUnderlyings) SetUnderlyingIssuer(v string) {
m.Set(field.NewUnderlyingIssuer(v))
}
// SetEncodedUnderlyingIssuerLen sets EncodedUnderlyingIssuerLen, Tag 362.
func (m NoUnderlyings) SetEncodedUnderlyingIssuerLen(v int) {
m.Set(field.NewEncodedUnderlyingIssuerLen(v))
}
// SetEncodedUnderlyingIssuer sets EncodedUnderlyingIssuer, Tag 363.
func (m NoUnderlyings) SetEncodedUnderlyingIssuer(v string) {
m.Set(field.NewEncodedUnderlyingIssuer(v))
}
// SetUnderlyingSecurityDesc sets UnderlyingSecurityDesc, Tag 307.
func (m NoUnderlyings) SetUnderlyingSecurityDesc(v string) {
m.Set(field.NewUnderlyingSecurityDesc(v))
}
// SetEncodedUnderlyingSecurityDescLen sets EncodedUnderlyingSecurityDescLen, Tag 364.
func (m NoUnderlyings) SetEncodedUnderlyingSecurityDescLen(v int) {
m.Set(field.NewEncodedUnderlyingSecurityDescLen(v))
}
// SetEncodedUnderlyingSecurityDesc sets EncodedUnderlyingSecurityDesc, Tag 365.
func (m NoUnderlyings) SetEncodedUnderlyingSecurityDesc(v string) {
m.Set(field.NewEncodedUnderlyingSecurityDesc(v))
}
// SetUnderlyingCPProgram sets UnderlyingCPProgram, Tag 877.
func (m NoUnderlyings) SetUnderlyingCPProgram(v string) {
m.Set(field.NewUnderlyingCPProgram(v))
}
// SetUnderlyingCPRegType sets UnderlyingCPRegType, Tag 878.
func (m NoUnderlyings) SetUnderlyingCPRegType(v string) {
m.Set(field.NewUnderlyingCPRegType(v))
}
// SetUnderlyingCurrency sets UnderlyingCurrency, Tag 318.
func (m NoUnderlyings) SetUnderlyingCurrency(v string) {
m.Set(field.NewUnderlyingCurrency(v))
}
// SetUnderlyingQty sets UnderlyingQty, Tag 879.
func (m NoUnderlyings) SetUnderlyingQty(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingQty(value, scale))
}
// SetUnderlyingPx sets UnderlyingPx, Tag 810.
func (m NoUnderlyings) SetUnderlyingPx(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingPx(value, scale))
}
// SetUnderlyingDirtyPrice sets UnderlyingDirtyPrice, Tag 882.
func (m NoUnderlyings) SetUnderlyingDirtyPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingDirtyPrice(value, scale))
}
// SetUnderlyingEndPrice sets UnderlyingEndPrice, Tag 883.
func (m NoUnderlyings) SetUnderlyingEndPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingEndPrice(value, scale))
}
// SetUnderlyingStartValue sets UnderlyingStartValue, Tag 884.
func (m NoUnderlyings) SetUnderlyingStartValue(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingStartValue(value, scale))
}
// SetUnderlyingCurrentValue sets UnderlyingCurrentValue, Tag 885.
func (m NoUnderlyings) SetUnderlyingCurrentValue(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingCurrentValue(value, scale))
}
// SetUnderlyingEndValue sets UnderlyingEndValue, Tag 886.
func (m NoUnderlyings) SetUnderlyingEndValue(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingEndValue(value, scale))
}
// SetNoUnderlyingStips sets NoUnderlyingStips, Tag 887.
func (m NoUnderlyings) SetNoUnderlyingStips(f NoUnderlyingStipsRepeatingGroup) {
m.SetGroup(f)
}
// GetUnderlyingSymbol gets UnderlyingSymbol, Tag 311.
func (m NoUnderlyings) GetUnderlyingSymbol() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSymbolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSymbolSfx gets UnderlyingSymbolSfx, Tag 312.
func (m NoUnderlyings) GetUnderlyingSymbolSfx() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityID gets UnderlyingSecurityID, Tag 309.
func (m NoUnderlyings) GetUnderlyingSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityIDSource gets UnderlyingSecurityIDSource, Tag 305.
func (m NoUnderlyings) GetUnderlyingSecurityIDSource() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoUnderlyingSecurityAltID gets NoUnderlyingSecurityAltID, Tag 457.
func (m NoUnderlyings) GetNoUnderlyingSecurityAltID() (NoUnderlyingSecurityAltIDRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoUnderlyingSecurityAltIDRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetUnderlyingProduct gets UnderlyingProduct, Tag 462.
func (m NoUnderlyings) GetUnderlyingProduct() (v int, err quickfix.MessageRejectError) {
var f field.UnderlyingProductField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCFICode gets UnderlyingCFICode, Tag 463.
func (m NoUnderlyings) GetUnderlyingCFICode() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCFICodeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityType gets UnderlyingSecurityType, Tag 310.
func (m NoUnderlyings) GetUnderlyingSecurityType() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecuritySubType gets UnderlyingSecuritySubType, Tag 763.
func (m NoUnderlyings) GetUnderlyingSecuritySubType() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecuritySubTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingMaturityMonthYear gets UnderlyingMaturityMonthYear, Tag 313.
func (m NoUnderlyings) GetUnderlyingMaturityMonthYear() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingMaturityMonthYearField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingMaturityDate gets UnderlyingMaturityDate, Tag 542.
func (m NoUnderlyings) GetUnderlyingMaturityDate() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingMaturityDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCouponPaymentDate gets UnderlyingCouponPaymentDate, Tag 241.
func (m NoUnderlyings) GetUnderlyingCouponPaymentDate() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCouponPaymentDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingIssueDate gets UnderlyingIssueDate, Tag 242.
func (m NoUnderlyings) GetUnderlyingIssueDate() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingIssueDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRepoCollateralSecurityType gets UnderlyingRepoCollateralSecurityType, Tag 243.
func (m NoUnderlyings) GetUnderlyingRepoCollateralSecurityType() (v int, err quickfix.MessageRejectError) {
var f field.UnderlyingRepoCollateralSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRepurchaseTerm gets UnderlyingRepurchaseTerm, Tag 244.
func (m NoUnderlyings) GetUnderlyingRepurchaseTerm() (v int, err quickfix.MessageRejectError) {
var f field.UnderlyingRepurchaseTermField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRepurchaseRate gets UnderlyingRepurchaseRate, Tag 245.
func (m NoUnderlyings) GetUnderlyingRepurchaseRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingRepurchaseRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingFactor gets UnderlyingFactor, Tag 246.
func (m NoUnderlyings) GetUnderlyingFactor() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingFactorField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCreditRating gets UnderlyingCreditRating, Tag 256.
func (m NoUnderlyings) GetUnderlyingCreditRating() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCreditRatingField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingInstrRegistry gets UnderlyingInstrRegistry, Tag 595.
func (m NoUnderlyings) GetUnderlyingInstrRegistry() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingInstrRegistryField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCountryOfIssue gets UnderlyingCountryOfIssue, Tag 592.
func (m NoUnderlyings) GetUnderlyingCountryOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCountryOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingStateOrProvinceOfIssue gets UnderlyingStateOrProvinceOfIssue, Tag 593.
func (m NoUnderlyings) GetUnderlyingStateOrProvinceOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingStateOrProvinceOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingLocaleOfIssue gets UnderlyingLocaleOfIssue, Tag 594.
func (m NoUnderlyings) GetUnderlyingLocaleOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingLocaleOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRedemptionDate gets UnderlyingRedemptionDate, Tag 247.
func (m NoUnderlyings) GetUnderlyingRedemptionDate() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingRedemptionDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingStrikePrice gets UnderlyingStrikePrice, Tag 316.
func (m NoUnderlyings) GetUnderlyingStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingStrikePriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingStrikeCurrency gets UnderlyingStrikeCurrency, Tag 941.
func (m NoUnderlyings) GetUnderlyingStrikeCurrency() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingStrikeCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingOptAttribute gets UnderlyingOptAttribute, Tag 317.
func (m NoUnderlyings) GetUnderlyingOptAttribute() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingOptAttributeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingContractMultiplier gets UnderlyingContractMultiplier, Tag 436.
func (m NoUnderlyings) GetUnderlyingContractMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingContractMultiplierField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCouponRate gets UnderlyingCouponRate, Tag 435.
func (m NoUnderlyings) GetUnderlyingCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingCouponRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityExchange gets UnderlyingSecurityExchange, Tag 308.
func (m NoUnderlyings) GetUnderlyingSecurityExchange() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityExchangeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingIssuer gets UnderlyingIssuer, Tag 306.
func (m NoUnderlyings) GetUnderlyingIssuer() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingIssuerLen gets EncodedUnderlyingIssuerLen, Tag 362.
func (m NoUnderlyings) GetEncodedUnderlyingIssuerLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedUnderlyingIssuerLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingIssuer gets EncodedUnderlyingIssuer, Tag 363.
func (m NoUnderlyings) GetEncodedUnderlyingIssuer() (v string, err quickfix.MessageRejectError) {
var f field.EncodedUnderlyingIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityDesc gets UnderlyingSecurityDesc, Tag 307.
func (m NoUnderlyings) GetUnderlyingSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingSecurityDescLen gets EncodedUnderlyingSecurityDescLen, Tag 364.
func (m NoUnderlyings) GetEncodedUnderlyingSecurityDescLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedUnderlyingSecurityDescLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingSecurityDesc gets EncodedUnderlyingSecurityDesc, Tag 365.
func (m NoUnderlyings) GetEncodedUnderlyingSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.EncodedUnderlyingSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCPProgram gets UnderlyingCPProgram, Tag 877.
func (m NoUnderlyings) GetUnderlyingCPProgram() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCPProgramField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCPRegType gets UnderlyingCPRegType, Tag 878.
func (m NoUnderlyings) GetUnderlyingCPRegType() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCPRegTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCurrency gets UnderlyingCurrency, Tag 318.
func (m NoUnderlyings) GetUnderlyingCurrency() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingQty gets UnderlyingQty, Tag 879.
func (m NoUnderlyings) GetUnderlyingQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingQtyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingPx gets UnderlyingPx, Tag 810.
func (m NoUnderlyings) GetUnderlyingPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingPxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingDirtyPrice gets UnderlyingDirtyPrice, Tag 882.
func (m NoUnderlyings) GetUnderlyingDirtyPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingDirtyPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingEndPrice gets UnderlyingEndPrice, Tag 883.
func (m NoUnderlyings) GetUnderlyingEndPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingEndPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingStartValue gets UnderlyingStartValue, Tag 884.
func (m NoUnderlyings) GetUnderlyingStartValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingStartValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCurrentValue gets UnderlyingCurrentValue, Tag 885.
func (m NoUnderlyings) GetUnderlyingCurrentValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingCurrentValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingEndValue gets UnderlyingEndValue, Tag 886.
func (m NoUnderlyings) GetUnderlyingEndValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingEndValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoUnderlyingStips gets NoUnderlyingStips, Tag 887.
func (m NoUnderlyings) GetNoUnderlyingStips() (NoUnderlyingStipsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoUnderlyingStipsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// HasUnderlyingSymbol returns true if UnderlyingSymbol is present, Tag 311.
func (m NoUnderlyings) HasUnderlyingSymbol() bool {
return m.Has(tag.UnderlyingSymbol)
}
// HasUnderlyingSymbolSfx returns true if UnderlyingSymbolSfx is present, Tag 312.
func (m NoUnderlyings) HasUnderlyingSymbolSfx() bool {
return m.Has(tag.UnderlyingSymbolSfx)
}
// HasUnderlyingSecurityID returns true if UnderlyingSecurityID is present, Tag 309.
func (m NoUnderlyings) HasUnderlyingSecurityID() bool {
return m.Has(tag.UnderlyingSecurityID)
}
// HasUnderlyingSecurityIDSource returns true if UnderlyingSecurityIDSource is present, Tag 305.
func (m NoUnderlyings) HasUnderlyingSecurityIDSource() bool {
return m.Has(tag.UnderlyingSecurityIDSource)
}
// HasNoUnderlyingSecurityAltID returns true if NoUnderlyingSecurityAltID is present, Tag 457.
func (m NoUnderlyings) HasNoUnderlyingSecurityAltID() bool {
return m.Has(tag.NoUnderlyingSecurityAltID)
}
// HasUnderlyingProduct returns true if UnderlyingProduct is present, Tag 462.
func (m NoUnderlyings) HasUnderlyingProduct() bool {
return m.Has(tag.UnderlyingProduct)
}
// HasUnderlyingCFICode returns true if UnderlyingCFICode is present, Tag 463.
func (m NoUnderlyings) HasUnderlyingCFICode() bool {
return m.Has(tag.UnderlyingCFICode)
}
// HasUnderlyingSecurityType returns true if UnderlyingSecurityType is present, Tag 310.
func (m NoUnderlyings) HasUnderlyingSecurityType() bool {
return m.Has(tag.UnderlyingSecurityType)
}
// HasUnderlyingSecuritySubType returns true if UnderlyingSecuritySubType is present, Tag 763.
func (m NoUnderlyings) HasUnderlyingSecuritySubType() bool {
return m.Has(tag.UnderlyingSecuritySubType)
}
// HasUnderlyingMaturityMonthYear returns true if UnderlyingMaturityMonthYear is present, Tag 313.
func (m NoUnderlyings) HasUnderlyingMaturityMonthYear() bool {
return m.Has(tag.UnderlyingMaturityMonthYear)
}
// HasUnderlyingMaturityDate returns true if UnderlyingMaturityDate is present, Tag 542.
func (m NoUnderlyings) HasUnderlyingMaturityDate() bool {
return m.Has(tag.UnderlyingMaturityDate)
}
// HasUnderlyingCouponPaymentDate returns true if UnderlyingCouponPaymentDate is present, Tag 241.
func (m NoUnderlyings) HasUnderlyingCouponPaymentDate() bool {
return m.Has(tag.UnderlyingCouponPaymentDate)
}
// HasUnderlyingIssueDate returns true if UnderlyingIssueDate is present, Tag 242.
func (m NoUnderlyings) HasUnderlyingIssueDate() bool {
return m.Has(tag.UnderlyingIssueDate)
}
// HasUnderlyingRepoCollateralSecurityType returns true if UnderlyingRepoCollateralSecurityType is present, Tag 243.
func (m NoUnderlyings) HasUnderlyingRepoCollateralSecurityType() bool {
return m.Has(tag.UnderlyingRepoCollateralSecurityType)
}
// HasUnderlyingRepurchaseTerm returns true if UnderlyingRepurchaseTerm is present, Tag 244.
func (m NoUnderlyings) HasUnderlyingRepurchaseTerm() bool {
return m.Has(tag.UnderlyingRepurchaseTerm)
}
// HasUnderlyingRepurchaseRate returns true if UnderlyingRepurchaseRate is present, Tag 245.
func (m NoUnderlyings) HasUnderlyingRepurchaseRate() bool {
return m.Has(tag.UnderlyingRepurchaseRate)
}
// HasUnderlyingFactor returns true if UnderlyingFactor is present, Tag 246.
func (m NoUnderlyings) HasUnderlyingFactor() bool {
return m.Has(tag.UnderlyingFactor)
}
// HasUnderlyingCreditRating returns true if UnderlyingCreditRating is present, Tag 256.
func (m NoUnderlyings) HasUnderlyingCreditRating() bool {
return m.Has(tag.UnderlyingCreditRating)
}
// HasUnderlyingInstrRegistry returns true if UnderlyingInstrRegistry is present, Tag 595.
func (m NoUnderlyings) HasUnderlyingInstrRegistry() bool {
return m.Has(tag.UnderlyingInstrRegistry)
}
// HasUnderlyingCountryOfIssue returns true if UnderlyingCountryOfIssue is present, Tag 592.
func (m NoUnderlyings) HasUnderlyingCountryOfIssue() bool {
return m.Has(tag.UnderlyingCountryOfIssue)
}
// HasUnderlyingStateOrProvinceOfIssue returns true if UnderlyingStateOrProvinceOfIssue is present, Tag 593.
func (m NoUnderlyings) HasUnderlyingStateOrProvinceOfIssue() bool {
return m.Has(tag.UnderlyingStateOrProvinceOfIssue)
}
// HasUnderlyingLocaleOfIssue returns true if UnderlyingLocaleOfIssue is present, Tag 594.
func (m NoUnderlyings) HasUnderlyingLocaleOfIssue() bool {
return m.Has(tag.UnderlyingLocaleOfIssue)
}
// HasUnderlyingRedemptionDate returns true if UnderlyingRedemptionDate is present, Tag 247.
func (m NoUnderlyings) HasUnderlyingRedemptionDate() bool {
return m.Has(tag.UnderlyingRedemptionDate)
}
// HasUnderlyingStrikePrice returns true if UnderlyingStrikePrice is present, Tag 316.
func (m NoUnderlyings) HasUnderlyingStrikePrice() bool {
return m.Has(tag.UnderlyingStrikePrice)
}
// HasUnderlyingStrikeCurrency returns true if UnderlyingStrikeCurrency is present, Tag 941.
func (m NoUnderlyings) HasUnderlyingStrikeCurrency() bool {
return m.Has(tag.UnderlyingStrikeCurrency)
}
// HasUnderlyingOptAttribute returns true if UnderlyingOptAttribute is present, Tag 317.
func (m NoUnderlyings) HasUnderlyingOptAttribute() bool {
return m.Has(tag.UnderlyingOptAttribute)
}
// HasUnderlyingContractMultiplier returns true if UnderlyingContractMultiplier is present, Tag 436.
func (m NoUnderlyings) HasUnderlyingContractMultiplier() bool {
return m.Has(tag.UnderlyingContractMultiplier)
}
// HasUnderlyingCouponRate returns true if UnderlyingCouponRate is present, Tag 435.
func (m NoUnderlyings) HasUnderlyingCouponRate() bool {
return m.Has(tag.UnderlyingCouponRate)
}
// HasUnderlyingSecurityExchange returns true if UnderlyingSecurityExchange is present, Tag 308.
func (m NoUnderlyings) HasUnderlyingSecurityExchange() bool {
return m.Has(tag.UnderlyingSecurityExchange)
}
// HasUnderlyingIssuer returns true if UnderlyingIssuer is present, Tag 306.
func (m NoUnderlyings) HasUnderlyingIssuer() bool {
return m.Has(tag.UnderlyingIssuer)
}
// HasEncodedUnderlyingIssuerLen returns true if EncodedUnderlyingIssuerLen is present, Tag 362.
func (m NoUnderlyings) HasEncodedUnderlyingIssuerLen() bool {
return m.Has(tag.EncodedUnderlyingIssuerLen)
}
// HasEncodedUnderlyingIssuer returns true if EncodedUnderlyingIssuer is present, Tag 363.
func (m NoUnderlyings) HasEncodedUnderlyingIssuer() bool {
return m.Has(tag.EncodedUnderlyingIssuer)
}
// HasUnderlyingSecurityDesc returns true if UnderlyingSecurityDesc is present, Tag 307.
func (m NoUnderlyings) HasUnderlyingSecurityDesc() bool {
return m.Has(tag.UnderlyingSecurityDesc)
}
// HasEncodedUnderlyingSecurityDescLen returns true if EncodedUnderlyingSecurityDescLen is present, Tag 364.
func (m NoUnderlyings) HasEncodedUnderlyingSecurityDescLen() bool {
return m.Has(tag.EncodedUnderlyingSecurityDescLen)
}
// HasEncodedUnderlyingSecurityDesc returns true if EncodedUnderlyingSecurityDesc is present, Tag 365.
func (m NoUnderlyings) HasEncodedUnderlyingSecurityDesc() bool {
return m.Has(tag.EncodedUnderlyingSecurityDesc)
}
// HasUnderlyingCPProgram returns true if UnderlyingCPProgram is present, Tag 877.
func (m NoUnderlyings) HasUnderlyingCPProgram() bool {
return m.Has(tag.UnderlyingCPProgram)
}
// HasUnderlyingCPRegType returns true if UnderlyingCPRegType is present, Tag 878.
func (m NoUnderlyings) HasUnderlyingCPRegType() bool {
return m.Has(tag.UnderlyingCPRegType)
}
// HasUnderlyingCurrency returns true if UnderlyingCurrency is present, Tag 318.
func (m NoUnderlyings) HasUnderlyingCurrency() bool {
return m.Has(tag.UnderlyingCurrency)
}
// HasUnderlyingQty returns true if UnderlyingQty is present, Tag 879.
func (m NoUnderlyings) HasUnderlyingQty() bool {
return m.Has(tag.UnderlyingQty)
}
// HasUnderlyingPx returns true if UnderlyingPx is present, Tag 810.
func (m NoUnderlyings) HasUnderlyingPx() bool {
return m.Has(tag.UnderlyingPx)
}
// HasUnderlyingDirtyPrice returns true if UnderlyingDirtyPrice is present, Tag 882.
func (m NoUnderlyings) HasUnderlyingDirtyPrice() bool {
return m.Has(tag.UnderlyingDirtyPrice)
}
// HasUnderlyingEndPrice returns true if UnderlyingEndPrice is present, Tag 883.
func (m NoUnderlyings) HasUnderlyingEndPrice() bool {
return m.Has(tag.UnderlyingEndPrice)
}
// HasUnderlyingStartValue returns true if UnderlyingStartValue is present, Tag 884.
func (m NoUnderlyings) HasUnderlyingStartValue() bool {
return m.Has(tag.UnderlyingStartValue)
}
// HasUnderlyingCurrentValue returns true if UnderlyingCurrentValue is present, Tag 885.
func (m NoUnderlyings) HasUnderlyingCurrentValue() bool {
return m.Has(tag.UnderlyingCurrentValue)
}
// HasUnderlyingEndValue returns true if UnderlyingEndValue is present, Tag 886.
func (m NoUnderlyings) HasUnderlyingEndValue() bool {
return m.Has(tag.UnderlyingEndValue)
}
// HasNoUnderlyingStips returns true if NoUnderlyingStips is present, Tag 887.
func (m NoUnderlyings) HasNoUnderlyingStips() bool {
return m.Has(tag.NoUnderlyingStips)
}
// NoUnderlyingSecurityAltID is a repeating group element, Tag 457.
type NoUnderlyingSecurityAltID struct {
*quickfix.Group
}
// SetUnderlyingSecurityAltID sets UnderlyingSecurityAltID, Tag 458.
func (m NoUnderlyingSecurityAltID) SetUnderlyingSecurityAltID(v string) {
m.Set(field.NewUnderlyingSecurityAltID(v))
}
// SetUnderlyingSecurityAltIDSource sets UnderlyingSecurityAltIDSource, Tag 459.
func (m NoUnderlyingSecurityAltID) SetUnderlyingSecurityAltIDSource(v string) {
m.Set(field.NewUnderlyingSecurityAltIDSource(v))
}
// GetUnderlyingSecurityAltID gets UnderlyingSecurityAltID, Tag 458.
func (m NoUnderlyingSecurityAltID) GetUnderlyingSecurityAltID() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityAltIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityAltIDSource gets UnderlyingSecurityAltIDSource, Tag 459.
func (m NoUnderlyingSecurityAltID) GetUnderlyingSecurityAltIDSource() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityAltIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasUnderlyingSecurityAltID returns true if UnderlyingSecurityAltID is present, Tag 458.
func (m NoUnderlyingSecurityAltID) HasUnderlyingSecurityAltID() bool {
return m.Has(tag.UnderlyingSecurityAltID)
}
// HasUnderlyingSecurityAltIDSource returns true if UnderlyingSecurityAltIDSource is present, Tag 459.
func (m NoUnderlyingSecurityAltID) HasUnderlyingSecurityAltIDSource() bool {
return m.Has(tag.UnderlyingSecurityAltIDSource)
}
// NoUnderlyingSecurityAltIDRepeatingGroup is a repeating group, Tag 457.
type NoUnderlyingSecurityAltIDRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoUnderlyingSecurityAltIDRepeatingGroup returns an initialized, NoUnderlyingSecurityAltIDRepeatingGroup.
func NewNoUnderlyingSecurityAltIDRepeatingGroup() NoUnderlyingSecurityAltIDRepeatingGroup {
return NoUnderlyingSecurityAltIDRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoUnderlyingSecurityAltID,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.UnderlyingSecurityAltID),
quickfix.GroupElement(tag.UnderlyingSecurityAltIDSource),
},
),
}
}
// Add create and append a new NoUnderlyingSecurityAltID to this group.
func (m NoUnderlyingSecurityAltIDRepeatingGroup) Add() NoUnderlyingSecurityAltID {
g := m.RepeatingGroup.Add()
return NoUnderlyingSecurityAltID{g}
}
// Get returns the ith NoUnderlyingSecurityAltID in the NoUnderlyingSecurityAltIDRepeatinGroup.
func (m NoUnderlyingSecurityAltIDRepeatingGroup) Get(i int) NoUnderlyingSecurityAltID {
return NoUnderlyingSecurityAltID{m.RepeatingGroup.Get(i)}
}
// NoUnderlyingStips is a repeating group element, Tag 887.
type NoUnderlyingStips struct {
*quickfix.Group
}
// SetUnderlyingStipType sets UnderlyingStipType, Tag 888.
func (m NoUnderlyingStips) SetUnderlyingStipType(v string) {
m.Set(field.NewUnderlyingStipType(v))
}
// SetUnderlyingStipValue sets UnderlyingStipValue, Tag 889.
func (m NoUnderlyingStips) SetUnderlyingStipValue(v string) {
m.Set(field.NewUnderlyingStipValue(v))
}
// GetUnderlyingStipType gets UnderlyingStipType, Tag 888.
func (m NoUnderlyingStips) GetUnderlyingStipType() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingStipTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingStipValue gets UnderlyingStipValue, Tag 889.
func (m NoUnderlyingStips) GetUnderlyingStipValue() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingStipValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasUnderlyingStipType returns true if UnderlyingStipType is present, Tag 888.
func (m NoUnderlyingStips) HasUnderlyingStipType() bool {
return m.Has(tag.UnderlyingStipType)
}
// HasUnderlyingStipValue returns true if UnderlyingStipValue is present, Tag 889.
func (m NoUnderlyingStips) HasUnderlyingStipValue() bool {
return m.Has(tag.UnderlyingStipValue)
}
// NoUnderlyingStipsRepeatingGroup is a repeating group, Tag 887.
type NoUnderlyingStipsRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoUnderlyingStipsRepeatingGroup returns an initialized, NoUnderlyingStipsRepeatingGroup.
func NewNoUnderlyingStipsRepeatingGroup() NoUnderlyingStipsRepeatingGroup {
return NoUnderlyingStipsRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoUnderlyingStips,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.UnderlyingStipType),
quickfix.GroupElement(tag.UnderlyingStipValue),
},
),
}
}
// Add create and append a new NoUnderlyingStips to this group.
func (m NoUnderlyingStipsRepeatingGroup) Add() NoUnderlyingStips {
g := m.RepeatingGroup.Add()
return NoUnderlyingStips{g}
}
// Get returns the ith NoUnderlyingStips in the NoUnderlyingStipsRepeatinGroup.
func (m NoUnderlyingStipsRepeatingGroup) Get(i int) NoUnderlyingStips {
return NoUnderlyingStips{m.RepeatingGroup.Get(i)}
}
// NoUnderlyingsRepeatingGroup is a repeating group, Tag 711.
type NoUnderlyingsRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoUnderlyingsRepeatingGroup returns an initialized, NoUnderlyingsRepeatingGroup.
func NewNoUnderlyingsRepeatingGroup() NoUnderlyingsRepeatingGroup {
return NoUnderlyingsRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoUnderlyings,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.UnderlyingSymbol),
quickfix.GroupElement(tag.UnderlyingSymbolSfx),
quickfix.GroupElement(tag.UnderlyingSecurityID),
quickfix.GroupElement(tag.UnderlyingSecurityIDSource),
NewNoUnderlyingSecurityAltIDRepeatingGroup(),
quickfix.GroupElement(tag.UnderlyingProduct),
quickfix.GroupElement(tag.UnderlyingCFICode),
quickfix.GroupElement(tag.UnderlyingSecurityType),
quickfix.GroupElement(tag.UnderlyingSecuritySubType),
quickfix.GroupElement(tag.UnderlyingMaturityMonthYear),
quickfix.GroupElement(tag.UnderlyingMaturityDate),
quickfix.GroupElement(tag.UnderlyingCouponPaymentDate),
quickfix.GroupElement(tag.UnderlyingIssueDate),
quickfix.GroupElement(tag.UnderlyingRepoCollateralSecurityType),
quickfix.GroupElement(tag.UnderlyingRepurchaseTerm),
quickfix.GroupElement(tag.UnderlyingRepurchaseRate),
quickfix.GroupElement(tag.UnderlyingFactor),
quickfix.GroupElement(tag.UnderlyingCreditRating),
quickfix.GroupElement(tag.UnderlyingInstrRegistry),
quickfix.GroupElement(tag.UnderlyingCountryOfIssue),
quickfix.GroupElement(tag.UnderlyingStateOrProvinceOfIssue),
quickfix.GroupElement(tag.UnderlyingLocaleOfIssue),
quickfix.GroupElement(tag.UnderlyingRedemptionDate),
quickfix.GroupElement(tag.UnderlyingStrikePrice),
quickfix.GroupElement(tag.UnderlyingStrikeCurrency),
quickfix.GroupElement(tag.UnderlyingOptAttribute),
quickfix.GroupElement(tag.UnderlyingContractMultiplier),
quickfix.GroupElement(tag.UnderlyingCouponRate),
quickfix.GroupElement(tag.UnderlyingSecurityExchange),
quickfix.GroupElement(tag.UnderlyingIssuer),
quickfix.GroupElement(tag.EncodedUnderlyingIssuerLen),
quickfix.GroupElement(tag.EncodedUnderlyingIssuer),
quickfix.GroupElement(tag.UnderlyingSecurityDesc),
quickfix.GroupElement(tag.EncodedUnderlyingSecurityDescLen),
quickfix.GroupElement(tag.EncodedUnderlyingSecurityDesc),
quickfix.GroupElement(tag.UnderlyingCPProgram),
quickfix.GroupElement(tag.UnderlyingCPRegType),
quickfix.GroupElement(tag.UnderlyingCurrency),
quickfix.GroupElement(tag.UnderlyingQty),
quickfix.GroupElement(tag.UnderlyingPx),
quickfix.GroupElement(tag.UnderlyingDirtyPrice),
quickfix.GroupElement(tag.UnderlyingEndPrice),
quickfix.GroupElement(tag.UnderlyingStartValue),
quickfix.GroupElement(tag.UnderlyingCurrentValue),
quickfix.GroupElement(tag.UnderlyingEndValue),
NewNoUnderlyingStipsRepeatingGroup(),
},
),
}
}
// Add create and append a new NoUnderlyings to this group.
func (m NoUnderlyingsRepeatingGroup) Add() NoUnderlyings {
g := m.RepeatingGroup.Add()
return NoUnderlyings{g}
}
// Get returns the ith NoUnderlyings in the NoUnderlyingsRepeatinGroup.
func (m NoUnderlyingsRepeatingGroup) Get(i int) NoUnderlyings {
return NoUnderlyings{m.RepeatingGroup.Get(i)}
}
// NoLegs is a repeating group element, Tag 555.
type NoLegs struct {
*quickfix.Group
}
// SetLegSymbol sets LegSymbol, Tag 600.
func (m NoLegs) SetLegSymbol(v string) {
m.Set(field.NewLegSymbol(v))
}
// SetLegSymbolSfx sets LegSymbolSfx, Tag 601.
func (m NoLegs) SetLegSymbolSfx(v string) {
m.Set(field.NewLegSymbolSfx(v))
}
// SetLegSecurityID sets LegSecurityID, Tag 602.
func (m NoLegs) SetLegSecurityID(v string) {
m.Set(field.NewLegSecurityID(v))
}
// SetLegSecurityIDSource sets LegSecurityIDSource, Tag 603.
func (m NoLegs) SetLegSecurityIDSource(v string) {
m.Set(field.NewLegSecurityIDSource(v))
}
// SetNoLegSecurityAltID sets NoLegSecurityAltID, Tag 604.
func (m NoLegs) SetNoLegSecurityAltID(f NoLegSecurityAltIDRepeatingGroup) {
m.SetGroup(f)
}
// SetLegProduct sets LegProduct, Tag 607.
func (m NoLegs) SetLegProduct(v int) {
m.Set(field.NewLegProduct(v))
}
// SetLegCFICode sets LegCFICode, Tag 608.
func (m NoLegs) SetLegCFICode(v string) {
m.Set(field.NewLegCFICode(v))
}
// SetLegSecurityType sets LegSecurityType, Tag 609.
func (m NoLegs) SetLegSecurityType(v string) {
m.Set(field.NewLegSecurityType(v))
}
// SetLegSecuritySubType sets LegSecuritySubType, Tag 764.
func (m NoLegs) SetLegSecuritySubType(v string) {
m.Set(field.NewLegSecuritySubType(v))
}
// SetLegMaturityMonthYear sets LegMaturityMonthYear, Tag 610.
func (m NoLegs) SetLegMaturityMonthYear(v string) {
m.Set(field.NewLegMaturityMonthYear(v))
}
// SetLegMaturityDate sets LegMaturityDate, Tag 611.
func (m NoLegs) SetLegMaturityDate(v string) {
m.Set(field.NewLegMaturityDate(v))
}
// SetLegCouponPaymentDate sets LegCouponPaymentDate, Tag 248.
func (m NoLegs) SetLegCouponPaymentDate(v string) {
m.Set(field.NewLegCouponPaymentDate(v))
}
// SetLegIssueDate sets LegIssueDate, Tag 249.
func (m NoLegs) SetLegIssueDate(v string) {
m.Set(field.NewLegIssueDate(v))
}
// SetLegRepoCollateralSecurityType sets LegRepoCollateralSecurityType, Tag 250.
func (m NoLegs) SetLegRepoCollateralSecurityType(v int) {
m.Set(field.NewLegRepoCollateralSecurityType(v))
}
// SetLegRepurchaseTerm sets LegRepurchaseTerm, Tag 251.
func (m NoLegs) SetLegRepurchaseTerm(v int) {
m.Set(field.NewLegRepurchaseTerm(v))
}
// SetLegRepurchaseRate sets LegRepurchaseRate, Tag 252.
func (m NoLegs) SetLegRepurchaseRate(value decimal.Decimal, scale int32) {
m.Set(field.NewLegRepurchaseRate(value, scale))
}
// SetLegFactor sets LegFactor, Tag 253.
func (m NoLegs) SetLegFactor(value decimal.Decimal, scale int32) {
m.Set(field.NewLegFactor(value, scale))
}
// SetLegCreditRating sets LegCreditRating, Tag 257.
func (m NoLegs) SetLegCreditRating(v string) {
m.Set(field.NewLegCreditRating(v))
}
// SetLegInstrRegistry sets LegInstrRegistry, Tag 599.
func (m NoLegs) SetLegInstrRegistry(v string) {
m.Set(field.NewLegInstrRegistry(v))
}
// SetLegCountryOfIssue sets LegCountryOfIssue, Tag 596.
func (m NoLegs) SetLegCountryOfIssue(v string) {
m.Set(field.NewLegCountryOfIssue(v))
}
// SetLegStateOrProvinceOfIssue sets LegStateOrProvinceOfIssue, Tag 597.
func (m NoLegs) SetLegStateOrProvinceOfIssue(v string) {
m.Set(field.NewLegStateOrProvinceOfIssue(v))
}
// SetLegLocaleOfIssue sets LegLocaleOfIssue, Tag 598.
func (m NoLegs) SetLegLocaleOfIssue(v string) {
m.Set(field.NewLegLocaleOfIssue(v))
}
// SetLegRedemptionDate sets LegRedemptionDate, Tag 254.
func (m NoLegs) SetLegRedemptionDate(v string) {
m.Set(field.NewLegRedemptionDate(v))
}
// SetLegStrikePrice sets LegStrikePrice, Tag 612.
func (m NoLegs) SetLegStrikePrice(value decimal.Decimal, scale int32) {
m.Set(field.NewLegStrikePrice(value, scale))
}
// SetLegStrikeCurrency sets LegStrikeCurrency, Tag 942.
func (m NoLegs) SetLegStrikeCurrency(v string) {
m.Set(field.NewLegStrikeCurrency(v))
}
// SetLegOptAttribute sets LegOptAttribute, Tag 613.
func (m NoLegs) SetLegOptAttribute(v string) {
m.Set(field.NewLegOptAttribute(v))
}
// SetLegContractMultiplier sets LegContractMultiplier, Tag 614.
func (m NoLegs) SetLegContractMultiplier(value decimal.Decimal, scale int32) {
m.Set(field.NewLegContractMultiplier(value, scale))
}
// SetLegCouponRate sets LegCouponRate, Tag 615.
func (m NoLegs) SetLegCouponRate(value decimal.Decimal, scale int32) {
m.Set(field.NewLegCouponRate(value, scale))
}
// SetLegSecurityExchange sets LegSecurityExchange, Tag 616.
func (m NoLegs) SetLegSecurityExchange(v string) {
m.Set(field.NewLegSecurityExchange(v))
}
// SetLegIssuer sets LegIssuer, Tag 617.
func (m NoLegs) SetLegIssuer(v string) {
m.Set(field.NewLegIssuer(v))
}
// SetEncodedLegIssuerLen sets EncodedLegIssuerLen, Tag 618.
func (m NoLegs) SetEncodedLegIssuerLen(v int) {
m.Set(field.NewEncodedLegIssuerLen(v))
}
// SetEncodedLegIssuer sets EncodedLegIssuer, Tag 619.
func (m NoLegs) SetEncodedLegIssuer(v string) {
m.Set(field.NewEncodedLegIssuer(v))
}
// SetLegSecurityDesc sets LegSecurityDesc, Tag 620.
func (m NoLegs) SetLegSecurityDesc(v string) {
m.Set(field.NewLegSecurityDesc(v))
}
// SetEncodedLegSecurityDescLen sets EncodedLegSecurityDescLen, Tag 621.
func (m NoLegs) SetEncodedLegSecurityDescLen(v int) {
m.Set(field.NewEncodedLegSecurityDescLen(v))
}
// SetEncodedLegSecurityDesc sets EncodedLegSecurityDesc, Tag 622.
func (m NoLegs) SetEncodedLegSecurityDesc(v string) {
m.Set(field.NewEncodedLegSecurityDesc(v))
}
// SetLegRatioQty sets LegRatioQty, Tag 623.
func (m NoLegs) SetLegRatioQty(value decimal.Decimal, scale int32) {
m.Set(field.NewLegRatioQty(value, scale))
}
// SetLegSide sets LegSide, Tag 624.
func (m NoLegs) SetLegSide(v string) {
m.Set(field.NewLegSide(v))
}
// SetLegCurrency sets LegCurrency, Tag 556.
func (m NoLegs) SetLegCurrency(v string) {
m.Set(field.NewLegCurrency(v))
}
// SetLegPool sets LegPool, Tag 740.
func (m NoLegs) SetLegPool(v string) {
m.Set(field.NewLegPool(v))
}
// SetLegDatedDate sets LegDatedDate, Tag 739.
func (m NoLegs) SetLegDatedDate(v string) {
m.Set(field.NewLegDatedDate(v))
}
// SetLegContractSettlMonth sets LegContractSettlMonth, Tag 955.
func (m NoLegs) SetLegContractSettlMonth(v string) {
m.Set(field.NewLegContractSettlMonth(v))
}
// SetLegInterestAccrualDate sets LegInterestAccrualDate, Tag 956.
func (m NoLegs) SetLegInterestAccrualDate(v string) {
m.Set(field.NewLegInterestAccrualDate(v))
}
// GetLegSymbol gets LegSymbol, Tag 600.
func (m NoLegs) GetLegSymbol() (v string, err quickfix.MessageRejectError) {
var f field.LegSymbolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSymbolSfx gets LegSymbolSfx, Tag 601.
func (m NoLegs) GetLegSymbolSfx() (v string, err quickfix.MessageRejectError) {
var f field.LegSymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityID gets LegSecurityID, Tag 602.
func (m NoLegs) GetLegSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityIDSource gets LegSecurityIDSource, Tag 603.
func (m NoLegs) GetLegSecurityIDSource() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoLegSecurityAltID gets NoLegSecurityAltID, Tag 604.
func (m NoLegs) GetNoLegSecurityAltID() (NoLegSecurityAltIDRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoLegSecurityAltIDRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetLegProduct gets LegProduct, Tag 607.
func (m NoLegs) GetLegProduct() (v int, err quickfix.MessageRejectError) {
var f field.LegProductField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCFICode gets LegCFICode, Tag 608.
func (m NoLegs) GetLegCFICode() (v string, err quickfix.MessageRejectError) {
var f field.LegCFICodeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityType gets LegSecurityType, Tag 609.
func (m NoLegs) GetLegSecurityType() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecuritySubType gets LegSecuritySubType, Tag 764.
func (m NoLegs) GetLegSecuritySubType() (v string, err quickfix.MessageRejectError) {
var f field.LegSecuritySubTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegMaturityMonthYear gets LegMaturityMonthYear, Tag 610.
func (m NoLegs) GetLegMaturityMonthYear() (v string, err quickfix.MessageRejectError) {
var f field.LegMaturityMonthYearField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegMaturityDate gets LegMaturityDate, Tag 611.
func (m NoLegs) GetLegMaturityDate() (v string, err quickfix.MessageRejectError) {
var f field.LegMaturityDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCouponPaymentDate gets LegCouponPaymentDate, Tag 248.
func (m NoLegs) GetLegCouponPaymentDate() (v string, err quickfix.MessageRejectError) {
var f field.LegCouponPaymentDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegIssueDate gets LegIssueDate, Tag 249.
func (m NoLegs) GetLegIssueDate() (v string, err quickfix.MessageRejectError) {
var f field.LegIssueDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRepoCollateralSecurityType gets LegRepoCollateralSecurityType, Tag 250.
func (m NoLegs) GetLegRepoCollateralSecurityType() (v int, err quickfix.MessageRejectError) {
var f field.LegRepoCollateralSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRepurchaseTerm gets LegRepurchaseTerm, Tag 251.
func (m NoLegs) GetLegRepurchaseTerm() (v int, err quickfix.MessageRejectError) {
var f field.LegRepurchaseTermField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRepurchaseRate gets LegRepurchaseRate, Tag 252.
func (m NoLegs) GetLegRepurchaseRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegRepurchaseRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegFactor gets LegFactor, Tag 253.
func (m NoLegs) GetLegFactor() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegFactorField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCreditRating gets LegCreditRating, Tag 257.
func (m NoLegs) GetLegCreditRating() (v string, err quickfix.MessageRejectError) {
var f field.LegCreditRatingField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegInstrRegistry gets LegInstrRegistry, Tag 599.
func (m NoLegs) GetLegInstrRegistry() (v string, err quickfix.MessageRejectError) {
var f field.LegInstrRegistryField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCountryOfIssue gets LegCountryOfIssue, Tag 596.
func (m NoLegs) GetLegCountryOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.LegCountryOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegStateOrProvinceOfIssue gets LegStateOrProvinceOfIssue, Tag 597.
func (m NoLegs) GetLegStateOrProvinceOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.LegStateOrProvinceOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegLocaleOfIssue gets LegLocaleOfIssue, Tag 598.
func (m NoLegs) GetLegLocaleOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.LegLocaleOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRedemptionDate gets LegRedemptionDate, Tag 254.
func (m NoLegs) GetLegRedemptionDate() (v string, err quickfix.MessageRejectError) {
var f field.LegRedemptionDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegStrikePrice gets LegStrikePrice, Tag 612.
func (m NoLegs) GetLegStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegStrikePriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegStrikeCurrency gets LegStrikeCurrency, Tag 942.
func (m NoLegs) GetLegStrikeCurrency() (v string, err quickfix.MessageRejectError) {
var f field.LegStrikeCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegOptAttribute gets LegOptAttribute, Tag 613.
func (m NoLegs) GetLegOptAttribute() (v string, err quickfix.MessageRejectError) {
var f field.LegOptAttributeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegContractMultiplier gets LegContractMultiplier, Tag 614.
func (m NoLegs) GetLegContractMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegContractMultiplierField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCouponRate gets LegCouponRate, Tag 615.
func (m NoLegs) GetLegCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegCouponRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityExchange gets LegSecurityExchange, Tag 616.
func (m NoLegs) GetLegSecurityExchange() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityExchangeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegIssuer gets LegIssuer, Tag 617.
func (m NoLegs) GetLegIssuer() (v string, err quickfix.MessageRejectError) {
var f field.LegIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedLegIssuerLen gets EncodedLegIssuerLen, Tag 618.
func (m NoLegs) GetEncodedLegIssuerLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedLegIssuerLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedLegIssuer gets EncodedLegIssuer, Tag 619.
func (m NoLegs) GetEncodedLegIssuer() (v string, err quickfix.MessageRejectError) {
var f field.EncodedLegIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityDesc gets LegSecurityDesc, Tag 620.
func (m NoLegs) GetLegSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedLegSecurityDescLen gets EncodedLegSecurityDescLen, Tag 621.
func (m NoLegs) GetEncodedLegSecurityDescLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedLegSecurityDescLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedLegSecurityDesc gets EncodedLegSecurityDesc, Tag 622.
func (m NoLegs) GetEncodedLegSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.EncodedLegSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRatioQty gets LegRatioQty, Tag 623.
func (m NoLegs) GetLegRatioQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegRatioQtyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSide gets LegSide, Tag 624.
func (m NoLegs) GetLegSide() (v string, err quickfix.MessageRejectError) {
var f field.LegSideField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCurrency gets LegCurrency, Tag 556.
func (m NoLegs) GetLegCurrency() (v string, err quickfix.MessageRejectError) {
var f field.LegCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegPool gets LegPool, Tag 740.
func (m NoLegs) GetLegPool() (v string, err quickfix.MessageRejectError) {
var f field.LegPoolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegDatedDate gets LegDatedDate, Tag 739.
func (m NoLegs) GetLegDatedDate() (v string, err quickfix.MessageRejectError) {
var f field.LegDatedDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegContractSettlMonth gets LegContractSettlMonth, Tag 955.
func (m NoLegs) GetLegContractSettlMonth() (v string, err quickfix.MessageRejectError) {
var f field.LegContractSettlMonthField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegInterestAccrualDate gets LegInterestAccrualDate, Tag 956.
func (m NoLegs) GetLegInterestAccrualDate() (v string, err quickfix.MessageRejectError) {
var f field.LegInterestAccrualDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasLegSymbol returns true if LegSymbol is present, Tag 600.
func (m NoLegs) HasLegSymbol() bool {
return m.Has(tag.LegSymbol)
}
// HasLegSymbolSfx returns true if LegSymbolSfx is present, Tag 601.
func (m NoLegs) HasLegSymbolSfx() bool {
return m.Has(tag.LegSymbolSfx)
}
// HasLegSecurityID returns true if LegSecurityID is present, Tag 602.
func (m NoLegs) HasLegSecurityID() bool {
return m.Has(tag.LegSecurityID)
}
// HasLegSecurityIDSource returns true if LegSecurityIDSource is present, Tag 603.
func (m NoLegs) HasLegSecurityIDSource() bool {
return m.Has(tag.LegSecurityIDSource)
}
// HasNoLegSecurityAltID returns true if NoLegSecurityAltID is present, Tag 604.
func (m NoLegs) HasNoLegSecurityAltID() bool {
return m.Has(tag.NoLegSecurityAltID)
}
// HasLegProduct returns true if LegProduct is present, Tag 607.
func (m NoLegs) HasLegProduct() bool {
return m.Has(tag.LegProduct)
}
// HasLegCFICode returns true if LegCFICode is present, Tag 608.
func (m NoLegs) HasLegCFICode() bool {
return m.Has(tag.LegCFICode)
}
// HasLegSecurityType returns true if LegSecurityType is present, Tag 609.
func (m NoLegs) HasLegSecurityType() bool {
return m.Has(tag.LegSecurityType)
}
// HasLegSecuritySubType returns true if LegSecuritySubType is present, Tag 764.
func (m NoLegs) HasLegSecuritySubType() bool {
return m.Has(tag.LegSecuritySubType)
}
// HasLegMaturityMonthYear returns true if LegMaturityMonthYear is present, Tag 610.
func (m NoLegs) HasLegMaturityMonthYear() bool {
return m.Has(tag.LegMaturityMonthYear)
}
// HasLegMaturityDate returns true if LegMaturityDate is present, Tag 611.
func (m NoLegs) HasLegMaturityDate() bool {
return m.Has(tag.LegMaturityDate)
}
// HasLegCouponPaymentDate returns true if LegCouponPaymentDate is present, Tag 248.
func (m NoLegs) HasLegCouponPaymentDate() bool {
return m.Has(tag.LegCouponPaymentDate)
}
// HasLegIssueDate returns true if LegIssueDate is present, Tag 249.
func (m NoLegs) HasLegIssueDate() bool {
return m.Has(tag.LegIssueDate)
}
// HasLegRepoCollateralSecurityType returns true if LegRepoCollateralSecurityType is present, Tag 250.
func (m NoLegs) HasLegRepoCollateralSecurityType() bool {
return m.Has(tag.LegRepoCollateralSecurityType)
}
// HasLegRepurchaseTerm returns true if LegRepurchaseTerm is present, Tag 251.
func (m NoLegs) HasLegRepurchaseTerm() bool {
return m.Has(tag.LegRepurchaseTerm)
}
// HasLegRepurchaseRate returns true if LegRepurchaseRate is present, Tag 252.
func (m NoLegs) HasLegRepurchaseRate() bool {
return m.Has(tag.LegRepurchaseRate)
}
// HasLegFactor returns true if LegFactor is present, Tag 253.
func (m NoLegs) HasLegFactor() bool {
return m.Has(tag.LegFactor)
}
// HasLegCreditRating returns true if LegCreditRating is present, Tag 257.
func (m NoLegs) HasLegCreditRating() bool {
return m.Has(tag.LegCreditRating)
}
// HasLegInstrRegistry returns true if LegInstrRegistry is present, Tag 599.
func (m NoLegs) HasLegInstrRegistry() bool {
return m.Has(tag.LegInstrRegistry)
}
// HasLegCountryOfIssue returns true if LegCountryOfIssue is present, Tag 596.
func (m NoLegs) HasLegCountryOfIssue() bool {
return m.Has(tag.LegCountryOfIssue)
}
// HasLegStateOrProvinceOfIssue returns true if LegStateOrProvinceOfIssue is present, Tag 597.
func (m NoLegs) HasLegStateOrProvinceOfIssue() bool {
return m.Has(tag.LegStateOrProvinceOfIssue)
}
// HasLegLocaleOfIssue returns true if LegLocaleOfIssue is present, Tag 598.
func (m NoLegs) HasLegLocaleOfIssue() bool {
return m.Has(tag.LegLocaleOfIssue)
}
// HasLegRedemptionDate returns true if LegRedemptionDate is present, Tag 254.
func (m NoLegs) HasLegRedemptionDate() bool {
return m.Has(tag.LegRedemptionDate)
}
// HasLegStrikePrice returns true if LegStrikePrice is present, Tag 612.
func (m NoLegs) HasLegStrikePrice() bool {
return m.Has(tag.LegStrikePrice)
}
// HasLegStrikeCurrency returns true if LegStrikeCurrency is present, Tag 942.
func (m NoLegs) HasLegStrikeCurrency() bool {
return m.Has(tag.LegStrikeCurrency)
}
// HasLegOptAttribute returns true if LegOptAttribute is present, Tag 613.
func (m NoLegs) HasLegOptAttribute() bool {
return m.Has(tag.LegOptAttribute)
}
// HasLegContractMultiplier returns true if LegContractMultiplier is present, Tag 614.
func (m NoLegs) HasLegContractMultiplier() bool {
return m.Has(tag.LegContractMultiplier)
}
// HasLegCouponRate returns true if LegCouponRate is present, Tag 615.
func (m NoLegs) HasLegCouponRate() bool {
return m.Has(tag.LegCouponRate)
}
// HasLegSecurityExchange returns true if LegSecurityExchange is present, Tag 616.
func (m NoLegs) HasLegSecurityExchange() bool {
return m.Has(tag.LegSecurityExchange)
}
// HasLegIssuer returns true if LegIssuer is present, Tag 617.
func (m NoLegs) HasLegIssuer() bool {
return m.Has(tag.LegIssuer)
}
// HasEncodedLegIssuerLen returns true if EncodedLegIssuerLen is present, Tag 618.
func (m NoLegs) HasEncodedLegIssuerLen() bool {
return m.Has(tag.EncodedLegIssuerLen)
}
// HasEncodedLegIssuer returns true if EncodedLegIssuer is present, Tag 619.
func (m NoLegs) HasEncodedLegIssuer() bool {
return m.Has(tag.EncodedLegIssuer)
}
// HasLegSecurityDesc returns true if LegSecurityDesc is present, Tag 620.
func (m NoLegs) HasLegSecurityDesc() bool {
return m.Has(tag.LegSecurityDesc)
}
// HasEncodedLegSecurityDescLen returns true if EncodedLegSecurityDescLen is present, Tag 621.
func (m NoLegs) HasEncodedLegSecurityDescLen() bool {
return m.Has(tag.EncodedLegSecurityDescLen)
}
// HasEncodedLegSecurityDesc returns true if EncodedLegSecurityDesc is present, Tag 622.
func (m NoLegs) HasEncodedLegSecurityDesc() bool {
return m.Has(tag.EncodedLegSecurityDesc)
}
// HasLegRatioQty returns true if LegRatioQty is present, Tag 623.
func (m NoLegs) HasLegRatioQty() bool {
return m.Has(tag.LegRatioQty)
}
// HasLegSide returns true if LegSide is present, Tag 624.
func (m NoLegs) HasLegSide() bool {
return m.Has(tag.LegSide)
}
// HasLegCurrency returns true if LegCurrency is present, Tag 556.
func (m NoLegs) HasLegCurrency() bool {
return m.Has(tag.LegCurrency)
}
// HasLegPool returns true if LegPool is present, Tag 740.
func (m NoLegs) HasLegPool() bool {
return m.Has(tag.LegPool)
}
// HasLegDatedDate returns true if LegDatedDate is present, Tag 739.
func (m NoLegs) HasLegDatedDate() bool {
return m.Has(tag.LegDatedDate)
}
// HasLegContractSettlMonth returns true if LegContractSettlMonth is present, Tag 955.
func (m NoLegs) HasLegContractSettlMonth() bool {
return m.Has(tag.LegContractSettlMonth)
}
// HasLegInterestAccrualDate returns true if LegInterestAccrualDate is present, Tag 956.
func (m NoLegs) HasLegInterestAccrualDate() bool {
return m.Has(tag.LegInterestAccrualDate)
}
// NoLegSecurityAltID is a repeating group element, Tag 604.
type NoLegSecurityAltID struct {
*quickfix.Group
}
// SetLegSecurityAltID sets LegSecurityAltID, Tag 605.
func (m NoLegSecurityAltID) SetLegSecurityAltID(v string) {
m.Set(field.NewLegSecurityAltID(v))
}
// SetLegSecurityAltIDSource sets LegSecurityAltIDSource, Tag 606.
func (m NoLegSecurityAltID) SetLegSecurityAltIDSource(v string) {
m.Set(field.NewLegSecurityAltIDSource(v))
}
// GetLegSecurityAltID gets LegSecurityAltID, Tag 605.
func (m NoLegSecurityAltID) GetLegSecurityAltID() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityAltIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityAltIDSource gets LegSecurityAltIDSource, Tag 606.
func (m NoLegSecurityAltID) GetLegSecurityAltIDSource() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityAltIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasLegSecurityAltID returns true if LegSecurityAltID is present, Tag 605.
func (m NoLegSecurityAltID) HasLegSecurityAltID() bool {
return m.Has(tag.LegSecurityAltID)
}
// HasLegSecurityAltIDSource returns true if LegSecurityAltIDSource is present, Tag 606.
func (m NoLegSecurityAltID) HasLegSecurityAltIDSource() bool {
return m.Has(tag.LegSecurityAltIDSource)
}
// NoLegSecurityAltIDRepeatingGroup is a repeating group, Tag 604.
type NoLegSecurityAltIDRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoLegSecurityAltIDRepeatingGroup returns an initialized, NoLegSecurityAltIDRepeatingGroup.
func NewNoLegSecurityAltIDRepeatingGroup() NoLegSecurityAltIDRepeatingGroup {
return NoLegSecurityAltIDRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoLegSecurityAltID,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.LegSecurityAltID),
quickfix.GroupElement(tag.LegSecurityAltIDSource),
},
),
}
}
// Add create and append a new NoLegSecurityAltID to this group.
func (m NoLegSecurityAltIDRepeatingGroup) Add() NoLegSecurityAltID {
g := m.RepeatingGroup.Add()
return NoLegSecurityAltID{g}
}
// Get returns the ith NoLegSecurityAltID in the NoLegSecurityAltIDRepeatinGroup.
func (m NoLegSecurityAltIDRepeatingGroup) Get(i int) NoLegSecurityAltID {
return NoLegSecurityAltID{m.RepeatingGroup.Get(i)}
}
// NoLegsRepeatingGroup is a repeating group, Tag 555.
type NoLegsRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoLegsRepeatingGroup returns an initialized, NoLegsRepeatingGroup.
func NewNoLegsRepeatingGroup() NoLegsRepeatingGroup {
return NoLegsRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoLegs,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.LegSymbol),
quickfix.GroupElement(tag.LegSymbolSfx),
quickfix.GroupElement(tag.LegSecurityID),
quickfix.GroupElement(tag.LegSecurityIDSource),
NewNoLegSecurityAltIDRepeatingGroup(),
quickfix.GroupElement(tag.LegProduct),
quickfix.GroupElement(tag.LegCFICode),
quickfix.GroupElement(tag.LegSecurityType),
quickfix.GroupElement(tag.LegSecuritySubType),
quickfix.GroupElement(tag.LegMaturityMonthYear),
quickfix.GroupElement(tag.LegMaturityDate),
quickfix.GroupElement(tag.LegCouponPaymentDate),
quickfix.GroupElement(tag.LegIssueDate),
quickfix.GroupElement(tag.LegRepoCollateralSecurityType),
quickfix.GroupElement(tag.LegRepurchaseTerm),
quickfix.GroupElement(tag.LegRepurchaseRate),
quickfix.GroupElement(tag.LegFactor),
quickfix.GroupElement(tag.LegCreditRating),
quickfix.GroupElement(tag.LegInstrRegistry),
quickfix.GroupElement(tag.LegCountryOfIssue),
quickfix.GroupElement(tag.LegStateOrProvinceOfIssue),
quickfix.GroupElement(tag.LegLocaleOfIssue),
quickfix.GroupElement(tag.LegRedemptionDate),
quickfix.GroupElement(tag.LegStrikePrice),
quickfix.GroupElement(tag.LegStrikeCurrency),
quickfix.GroupElement(tag.LegOptAttribute),
quickfix.GroupElement(tag.LegContractMultiplier),
quickfix.GroupElement(tag.LegCouponRate),
quickfix.GroupElement(tag.LegSecurityExchange),
quickfix.GroupElement(tag.LegIssuer),
quickfix.GroupElement(tag.EncodedLegIssuerLen),
quickfix.GroupElement(tag.EncodedLegIssuer),
quickfix.GroupElement(tag.LegSecurityDesc),
quickfix.GroupElement(tag.EncodedLegSecurityDescLen),
quickfix.GroupElement(tag.EncodedLegSecurityDesc),
quickfix.GroupElement(tag.LegRatioQty),
quickfix.GroupElement(tag.LegSide),
quickfix.GroupElement(tag.LegCurrency),
quickfix.GroupElement(tag.LegPool),
quickfix.GroupElement(tag.LegDatedDate),
quickfix.GroupElement(tag.LegContractSettlMonth),
quickfix.GroupElement(tag.LegInterestAccrualDate),
},
),
}
}
// Add create and append a new NoLegs to this group.
func (m NoLegsRepeatingGroup) Add() NoLegs {
g := m.RepeatingGroup.Add()
return NoLegs{g}
}
// Get returns the ith NoLegs in the NoLegsRepeatinGroup.
func (m NoLegsRepeatingGroup) Get(i int) NoLegs {
return NoLegs{m.RepeatingGroup.Get(i)}
}
// NoMDEntriesRepeatingGroup is a repeating group, Tag 268.
type NoMDEntriesRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoMDEntriesRepeatingGroup returns an initialized, NoMDEntriesRepeatingGroup.
func NewNoMDEntriesRepeatingGroup() NoMDEntriesRepeatingGroup {
return NoMDEntriesRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoMDEntries,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.MDUpdateAction),
quickfix.GroupElement(tag.DeleteReason),
quickfix.GroupElement(tag.MDEntryType),
quickfix.GroupElement(tag.MDEntryID),
quickfix.GroupElement(tag.MDEntryRefID),
quickfix.GroupElement(tag.Symbol),
quickfix.GroupElement(tag.SymbolSfx),
quickfix.GroupElement(tag.SecurityID),
quickfix.GroupElement(tag.SecurityIDSource),
NewNoSecurityAltIDRepeatingGroup(),
quickfix.GroupElement(tag.Product),
quickfix.GroupElement(tag.CFICode),
quickfix.GroupElement(tag.SecurityType),
quickfix.GroupElement(tag.SecuritySubType),
quickfix.GroupElement(tag.MaturityMonthYear),
quickfix.GroupElement(tag.MaturityDate),
quickfix.GroupElement(tag.CouponPaymentDate),
quickfix.GroupElement(tag.IssueDate),
quickfix.GroupElement(tag.RepoCollateralSecurityType),
quickfix.GroupElement(tag.RepurchaseTerm),
quickfix.GroupElement(tag.RepurchaseRate),
quickfix.GroupElement(tag.Factor),
quickfix.GroupElement(tag.CreditRating),
quickfix.GroupElement(tag.InstrRegistry),
quickfix.GroupElement(tag.CountryOfIssue),
quickfix.GroupElement(tag.StateOrProvinceOfIssue),
quickfix.GroupElement(tag.LocaleOfIssue),
quickfix.GroupElement(tag.RedemptionDate),
quickfix.GroupElement(tag.StrikePrice),
quickfix.GroupElement(tag.StrikeCurrency),
quickfix.GroupElement(tag.OptAttribute),
quickfix.GroupElement(tag.ContractMultiplier),
quickfix.GroupElement(tag.CouponRate),
quickfix.GroupElement(tag.SecurityExchange),
quickfix.GroupElement(tag.Issuer),
quickfix.GroupElement(tag.EncodedIssuerLen),
quickfix.GroupElement(tag.EncodedIssuer),
quickfix.GroupElement(tag.SecurityDesc),
quickfix.GroupElement(tag.EncodedSecurityDescLen),
quickfix.GroupElement(tag.EncodedSecurityDesc),
quickfix.GroupElement(tag.Pool),
quickfix.GroupElement(tag.ContractSettlMonth),
quickfix.GroupElement(tag.CPProgram),
quickfix.GroupElement(tag.CPRegType),
NewNoEventsRepeatingGroup(),
quickfix.GroupElement(tag.DatedDate),
quickfix.GroupElement(tag.InterestAccrualDate),
NewNoUnderlyingsRepeatingGroup(),
NewNoLegsRepeatingGroup(),
quickfix.GroupElement(tag.FinancialStatus),
quickfix.GroupElement(tag.CorporateAction),
quickfix.GroupElement(tag.MDEntryPx),
quickfix.GroupElement(tag.Currency),
quickfix.GroupElement(tag.MDEntrySize),
quickfix.GroupElement(tag.MDEntryDate),
quickfix.GroupElement(tag.MDEntryTime),
quickfix.GroupElement(tag.TickDirection),
quickfix.GroupElement(tag.MDMkt),
quickfix.GroupElement(tag.TradingSessionID),
quickfix.GroupElement(tag.TradingSessionSubID),
quickfix.GroupElement(tag.QuoteCondition),
quickfix.GroupElement(tag.TradeCondition),
quickfix.GroupElement(tag.MDEntryOriginator),
quickfix.GroupElement(tag.LocationID),
quickfix.GroupElement(tag.DeskID),
quickfix.GroupElement(tag.OpenCloseSettlFlag),
quickfix.GroupElement(tag.TimeInForce),
quickfix.GroupElement(tag.ExpireDate),
quickfix.GroupElement(tag.ExpireTime),
quickfix.GroupElement(tag.MinQty),
quickfix.GroupElement(tag.ExecInst),
quickfix.GroupElement(tag.SellerDays),
quickfix.GroupElement(tag.OrderID),
quickfix.GroupElement(tag.QuoteEntryID),
quickfix.GroupElement(tag.MDEntryBuyer),
quickfix.GroupElement(tag.MDEntrySeller),
quickfix.GroupElement(tag.NumberOfOrders),
quickfix.GroupElement(tag.MDEntryPositionNo),
quickfix.GroupElement(tag.Scope),
quickfix.GroupElement(tag.PriceDelta),
quickfix.GroupElement(tag.NetChgPrevDay),
quickfix.GroupElement(tag.Text),
quickfix.GroupElement(tag.EncodedTextLen),
quickfix.GroupElement(tag.EncodedText),
},
),
}
}
// Add create and append a new NoMDEntries to this group.
func (m NoMDEntriesRepeatingGroup) Add() NoMDEntries {
g := m.RepeatingGroup.Add()
return NoMDEntries{g}
}
// Get returns the ith NoMDEntries in the NoMDEntriesRepeatinGroup.
func (m NoMDEntriesRepeatingGroup) Get(i int) NoMDEntries {
return NoMDEntries{m.RepeatingGroup.Get(i)}
}