// Code generated by quickfix. DO NOT EDIT. package adjustedpositionreport 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/fixt11" "quantex.com/qfixdpl/quickfix/gen/tag" ) // AdjustedPositionReport is the fix50sp1 AdjustedPositionReport type, MsgType = BL. type AdjustedPositionReport struct { fixt11.Header *quickfix.Body fixt11.Trailer Message *quickfix.Message } // FromMessage creates a AdjustedPositionReport from a quickfix.Message instance. func FromMessage(m *quickfix.Message) AdjustedPositionReport { return AdjustedPositionReport{ Header: fixt11.Header{Header: &m.Header}, Body: &m.Body, Trailer: fixt11.Trailer{Trailer: &m.Trailer}, Message: m, } } // ToMessage returns a quickfix.Message instance. func (m AdjustedPositionReport) ToMessage() *quickfix.Message { return m.Message } // New returns a AdjustedPositionReport initialized with the required fields for AdjustedPositionReport. func New(posmaintrptid field.PosMaintRptIDField, clearingbusinessdate field.ClearingBusinessDateField) (m AdjustedPositionReport) { m.Message = quickfix.NewMessage() m.Header = fixt11.NewHeader(&m.Message.Header) m.Body = &m.Message.Body m.Trailer.Trailer = &m.Message.Trailer m.Header.Set(field.NewMsgType("BL")) m.Set(posmaintrptid) m.Set(clearingbusinessdate) return } // A RouteOut is the callback type that should be implemented for routing Message. type RouteOut func(msg AdjustedPositionReport, 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 "8", "BL", r } // SetNoRelatedSym sets NoRelatedSym, Tag 146. func (m AdjustedPositionReport) SetNoRelatedSym(f NoRelatedSymRepeatingGroup) { m.SetGroup(f) } // SetNoPartyIDs sets NoPartyIDs, Tag 453. func (m AdjustedPositionReport) SetNoPartyIDs(f NoPartyIDsRepeatingGroup) { m.SetGroup(f) } // SetNoPositions sets NoPositions, Tag 702. func (m AdjustedPositionReport) SetNoPositions(f NoPositionsRepeatingGroup) { m.SetGroup(f) } // SetPosMaintRptRefID sets PosMaintRptRefID, Tag 714. func (m AdjustedPositionReport) SetPosMaintRptRefID(v string) { m.Set(field.NewPosMaintRptRefID(v)) } // SetClearingBusinessDate sets ClearingBusinessDate, Tag 715. func (m AdjustedPositionReport) SetClearingBusinessDate(v string) { m.Set(field.NewClearingBusinessDate(v)) } // SetSettlSessID sets SettlSessID, Tag 716. func (m AdjustedPositionReport) SetSettlSessID(v enum.SettlSessID) { m.Set(field.NewSettlSessID(v)) } // SetPosMaintRptID sets PosMaintRptID, Tag 721. func (m AdjustedPositionReport) SetPosMaintRptID(v string) { m.Set(field.NewPosMaintRptID(v)) } // SetPosReqType sets PosReqType, Tag 724. func (m AdjustedPositionReport) SetPosReqType(v enum.PosReqType) { m.Set(field.NewPosReqType(v)) } // SetSettlPrice sets SettlPrice, Tag 730. func (m AdjustedPositionReport) SetSettlPrice(value decimal.Decimal, scale int32) { m.Set(field.NewSettlPrice(value, scale)) } // SetPriorSettlPrice sets PriorSettlPrice, Tag 734. func (m AdjustedPositionReport) SetPriorSettlPrice(value decimal.Decimal, scale int32) { m.Set(field.NewPriorSettlPrice(value, scale)) } // GetNoRelatedSym gets NoRelatedSym, Tag 146. func (m AdjustedPositionReport) GetNoRelatedSym() (NoRelatedSymRepeatingGroup, quickfix.MessageRejectError) { f := NewNoRelatedSymRepeatingGroup() err := m.GetGroup(f) return f, err } // GetNoPartyIDs gets NoPartyIDs, Tag 453. func (m AdjustedPositionReport) GetNoPartyIDs() (NoPartyIDsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoPartyIDsRepeatingGroup() err := m.GetGroup(f) return f, err } // GetNoPositions gets NoPositions, Tag 702. func (m AdjustedPositionReport) GetNoPositions() (NoPositionsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoPositionsRepeatingGroup() err := m.GetGroup(f) return f, err } // GetPosMaintRptRefID gets PosMaintRptRefID, Tag 714. func (m AdjustedPositionReport) GetPosMaintRptRefID() (v string, err quickfix.MessageRejectError) { var f field.PosMaintRptRefIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetClearingBusinessDate gets ClearingBusinessDate, Tag 715. func (m AdjustedPositionReport) GetClearingBusinessDate() (v string, err quickfix.MessageRejectError) { var f field.ClearingBusinessDateField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSettlSessID gets SettlSessID, Tag 716. func (m AdjustedPositionReport) GetSettlSessID() (v enum.SettlSessID, err quickfix.MessageRejectError) { var f field.SettlSessIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPosMaintRptID gets PosMaintRptID, Tag 721. func (m AdjustedPositionReport) GetPosMaintRptID() (v string, err quickfix.MessageRejectError) { var f field.PosMaintRptIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPosReqType gets PosReqType, Tag 724. func (m AdjustedPositionReport) GetPosReqType() (v enum.PosReqType, err quickfix.MessageRejectError) { var f field.PosReqTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSettlPrice gets SettlPrice, Tag 730. func (m AdjustedPositionReport) GetSettlPrice() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.SettlPriceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPriorSettlPrice gets PriorSettlPrice, Tag 734. func (m AdjustedPositionReport) GetPriorSettlPrice() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.PriorSettlPriceField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasNoRelatedSym returns true if NoRelatedSym is present, Tag 146. func (m AdjustedPositionReport) HasNoRelatedSym() bool { return m.Has(tag.NoRelatedSym) } // HasNoPartyIDs returns true if NoPartyIDs is present, Tag 453. func (m AdjustedPositionReport) HasNoPartyIDs() bool { return m.Has(tag.NoPartyIDs) } // HasNoPositions returns true if NoPositions is present, Tag 702. func (m AdjustedPositionReport) HasNoPositions() bool { return m.Has(tag.NoPositions) } // HasPosMaintRptRefID returns true if PosMaintRptRefID is present, Tag 714. func (m AdjustedPositionReport) HasPosMaintRptRefID() bool { return m.Has(tag.PosMaintRptRefID) } // HasClearingBusinessDate returns true if ClearingBusinessDate is present, Tag 715. func (m AdjustedPositionReport) HasClearingBusinessDate() bool { return m.Has(tag.ClearingBusinessDate) } // HasSettlSessID returns true if SettlSessID is present, Tag 716. func (m AdjustedPositionReport) HasSettlSessID() bool { return m.Has(tag.SettlSessID) } // HasPosMaintRptID returns true if PosMaintRptID is present, Tag 721. func (m AdjustedPositionReport) HasPosMaintRptID() bool { return m.Has(tag.PosMaintRptID) } // HasPosReqType returns true if PosReqType is present, Tag 724. func (m AdjustedPositionReport) HasPosReqType() bool { return m.Has(tag.PosReqType) } // HasSettlPrice returns true if SettlPrice is present, Tag 730. func (m AdjustedPositionReport) HasSettlPrice() bool { return m.Has(tag.SettlPrice) } // HasPriorSettlPrice returns true if PriorSettlPrice is present, Tag 734. func (m AdjustedPositionReport) HasPriorSettlPrice() bool { return m.Has(tag.PriorSettlPrice) } // NoRelatedSym is a repeating group element, Tag 146. type NoRelatedSym struct { *quickfix.Group } // SetSymbol sets Symbol, Tag 55. func (m NoRelatedSym) SetSymbol(v string) { m.Set(field.NewSymbol(v)) } // SetSymbolSfx sets SymbolSfx, Tag 65. func (m NoRelatedSym) SetSymbolSfx(v enum.SymbolSfx) { m.Set(field.NewSymbolSfx(v)) } // SetSecurityID sets SecurityID, Tag 48. func (m NoRelatedSym) SetSecurityID(v string) { m.Set(field.NewSecurityID(v)) } // SetSecurityIDSource sets SecurityIDSource, Tag 22. func (m NoRelatedSym) SetSecurityIDSource(v enum.SecurityIDSource) { m.Set(field.NewSecurityIDSource(v)) } // SetNoSecurityAltID sets NoSecurityAltID, Tag 454. func (m NoRelatedSym) SetNoSecurityAltID(f NoSecurityAltIDRepeatingGroup) { m.SetGroup(f) } // SetProduct sets Product, Tag 460. func (m NoRelatedSym) SetProduct(v enum.Product) { m.Set(field.NewProduct(v)) } // SetCFICode sets CFICode, Tag 461. func (m NoRelatedSym) SetCFICode(v string) { m.Set(field.NewCFICode(v)) } // SetSecurityType sets SecurityType, Tag 167. func (m NoRelatedSym) SetSecurityType(v enum.SecurityType) { m.Set(field.NewSecurityType(v)) } // SetSecuritySubType sets SecuritySubType, Tag 762. func (m NoRelatedSym) SetSecuritySubType(v string) { m.Set(field.NewSecuritySubType(v)) } // SetMaturityMonthYear sets MaturityMonthYear, Tag 200. func (m NoRelatedSym) SetMaturityMonthYear(v string) { m.Set(field.NewMaturityMonthYear(v)) } // SetMaturityDate sets MaturityDate, Tag 541. func (m NoRelatedSym) SetMaturityDate(v string) { m.Set(field.NewMaturityDate(v)) } // SetCouponPaymentDate sets CouponPaymentDate, Tag 224. func (m NoRelatedSym) SetCouponPaymentDate(v string) { m.Set(field.NewCouponPaymentDate(v)) } // SetIssueDate sets IssueDate, Tag 225. func (m NoRelatedSym) SetIssueDate(v string) { m.Set(field.NewIssueDate(v)) } // SetRepoCollateralSecurityType sets RepoCollateralSecurityType, Tag 239. func (m NoRelatedSym) SetRepoCollateralSecurityType(v int) { m.Set(field.NewRepoCollateralSecurityType(v)) } // SetRepurchaseTerm sets RepurchaseTerm, Tag 226. func (m NoRelatedSym) SetRepurchaseTerm(v int) { m.Set(field.NewRepurchaseTerm(v)) } // SetRepurchaseRate sets RepurchaseRate, Tag 227. func (m NoRelatedSym) SetRepurchaseRate(value decimal.Decimal, scale int32) { m.Set(field.NewRepurchaseRate(value, scale)) } // SetFactor sets Factor, Tag 228. func (m NoRelatedSym) SetFactor(value decimal.Decimal, scale int32) { m.Set(field.NewFactor(value, scale)) } // SetCreditRating sets CreditRating, Tag 255. func (m NoRelatedSym) SetCreditRating(v string) { m.Set(field.NewCreditRating(v)) } // SetInstrRegistry sets InstrRegistry, Tag 543. func (m NoRelatedSym) SetInstrRegistry(v enum.InstrRegistry) { m.Set(field.NewInstrRegistry(v)) } // SetCountryOfIssue sets CountryOfIssue, Tag 470. func (m NoRelatedSym) SetCountryOfIssue(v string) { m.Set(field.NewCountryOfIssue(v)) } // SetStateOrProvinceOfIssue sets StateOrProvinceOfIssue, Tag 471. func (m NoRelatedSym) SetStateOrProvinceOfIssue(v string) { m.Set(field.NewStateOrProvinceOfIssue(v)) } // SetLocaleOfIssue sets LocaleOfIssue, Tag 472. func (m NoRelatedSym) SetLocaleOfIssue(v string) { m.Set(field.NewLocaleOfIssue(v)) } // SetRedemptionDate sets RedemptionDate, Tag 240. func (m NoRelatedSym) SetRedemptionDate(v string) { m.Set(field.NewRedemptionDate(v)) } // SetStrikePrice sets StrikePrice, Tag 202. func (m NoRelatedSym) SetStrikePrice(value decimal.Decimal, scale int32) { m.Set(field.NewStrikePrice(value, scale)) } // SetStrikeCurrency sets StrikeCurrency, Tag 947. func (m NoRelatedSym) SetStrikeCurrency(v string) { m.Set(field.NewStrikeCurrency(v)) } // SetOptAttribute sets OptAttribute, Tag 206. func (m NoRelatedSym) SetOptAttribute(v string) { m.Set(field.NewOptAttribute(v)) } // SetContractMultiplier sets ContractMultiplier, Tag 231. func (m NoRelatedSym) SetContractMultiplier(value decimal.Decimal, scale int32) { m.Set(field.NewContractMultiplier(value, scale)) } // SetCouponRate sets CouponRate, Tag 223. func (m NoRelatedSym) SetCouponRate(value decimal.Decimal, scale int32) { m.Set(field.NewCouponRate(value, scale)) } // SetSecurityExchange sets SecurityExchange, Tag 207. func (m NoRelatedSym) SetSecurityExchange(v string) { m.Set(field.NewSecurityExchange(v)) } // SetIssuer sets Issuer, Tag 106. func (m NoRelatedSym) SetIssuer(v string) { m.Set(field.NewIssuer(v)) } // SetEncodedIssuerLen sets EncodedIssuerLen, Tag 348. func (m NoRelatedSym) SetEncodedIssuerLen(v int) { m.Set(field.NewEncodedIssuerLen(v)) } // SetEncodedIssuer sets EncodedIssuer, Tag 349. func (m NoRelatedSym) SetEncodedIssuer(v string) { m.Set(field.NewEncodedIssuer(v)) } // SetSecurityDesc sets SecurityDesc, Tag 107. func (m NoRelatedSym) SetSecurityDesc(v string) { m.Set(field.NewSecurityDesc(v)) } // SetEncodedSecurityDescLen sets EncodedSecurityDescLen, Tag 350. func (m NoRelatedSym) SetEncodedSecurityDescLen(v int) { m.Set(field.NewEncodedSecurityDescLen(v)) } // SetEncodedSecurityDesc sets EncodedSecurityDesc, Tag 351. func (m NoRelatedSym) SetEncodedSecurityDesc(v string) { m.Set(field.NewEncodedSecurityDesc(v)) } // SetPool sets Pool, Tag 691. func (m NoRelatedSym) SetPool(v string) { m.Set(field.NewPool(v)) } // SetContractSettlMonth sets ContractSettlMonth, Tag 667. func (m NoRelatedSym) SetContractSettlMonth(v string) { m.Set(field.NewContractSettlMonth(v)) } // SetCPProgram sets CPProgram, Tag 875. func (m NoRelatedSym) SetCPProgram(v enum.CPProgram) { m.Set(field.NewCPProgram(v)) } // SetCPRegType sets CPRegType, Tag 876. func (m NoRelatedSym) SetCPRegType(v string) { m.Set(field.NewCPRegType(v)) } // SetNoEvents sets NoEvents, Tag 864. func (m NoRelatedSym) SetNoEvents(f NoEventsRepeatingGroup) { m.SetGroup(f) } // SetDatedDate sets DatedDate, Tag 873. func (m NoRelatedSym) SetDatedDate(v string) { m.Set(field.NewDatedDate(v)) } // SetInterestAccrualDate sets InterestAccrualDate, Tag 874. func (m NoRelatedSym) SetInterestAccrualDate(v string) { m.Set(field.NewInterestAccrualDate(v)) } // SetSecurityStatus sets SecurityStatus, Tag 965. func (m NoRelatedSym) SetSecurityStatus(v enum.SecurityStatus) { m.Set(field.NewSecurityStatus(v)) } // SetSettleOnOpenFlag sets SettleOnOpenFlag, Tag 966. func (m NoRelatedSym) SetSettleOnOpenFlag(v string) { m.Set(field.NewSettleOnOpenFlag(v)) } // SetInstrmtAssignmentMethod sets InstrmtAssignmentMethod, Tag 1049. func (m NoRelatedSym) SetInstrmtAssignmentMethod(v string) { m.Set(field.NewInstrmtAssignmentMethod(v)) } // SetStrikeMultiplier sets StrikeMultiplier, Tag 967. func (m NoRelatedSym) SetStrikeMultiplier(value decimal.Decimal, scale int32) { m.Set(field.NewStrikeMultiplier(value, scale)) } // SetStrikeValue sets StrikeValue, Tag 968. func (m NoRelatedSym) SetStrikeValue(value decimal.Decimal, scale int32) { m.Set(field.NewStrikeValue(value, scale)) } // SetMinPriceIncrement sets MinPriceIncrement, Tag 969. func (m NoRelatedSym) SetMinPriceIncrement(value decimal.Decimal, scale int32) { m.Set(field.NewMinPriceIncrement(value, scale)) } // SetPositionLimit sets PositionLimit, Tag 970. func (m NoRelatedSym) SetPositionLimit(v int) { m.Set(field.NewPositionLimit(v)) } // SetNTPositionLimit sets NTPositionLimit, Tag 971. func (m NoRelatedSym) SetNTPositionLimit(v int) { m.Set(field.NewNTPositionLimit(v)) } // SetNoInstrumentParties sets NoInstrumentParties, Tag 1018. func (m NoRelatedSym) SetNoInstrumentParties(f NoInstrumentPartiesRepeatingGroup) { m.SetGroup(f) } // SetUnitOfMeasure sets UnitOfMeasure, Tag 996. func (m NoRelatedSym) SetUnitOfMeasure(v enum.UnitOfMeasure) { m.Set(field.NewUnitOfMeasure(v)) } // SetTimeUnit sets TimeUnit, Tag 997. func (m NoRelatedSym) SetTimeUnit(v enum.TimeUnit) { m.Set(field.NewTimeUnit(v)) } // SetMaturityTime sets MaturityTime, Tag 1079. func (m NoRelatedSym) SetMaturityTime(v string) { m.Set(field.NewMaturityTime(v)) } // SetSecurityGroup sets SecurityGroup, Tag 1151. func (m NoRelatedSym) SetSecurityGroup(v string) { m.Set(field.NewSecurityGroup(v)) } // SetMinPriceIncrementAmount sets MinPriceIncrementAmount, Tag 1146. func (m NoRelatedSym) SetMinPriceIncrementAmount(value decimal.Decimal, scale int32) { m.Set(field.NewMinPriceIncrementAmount(value, scale)) } // SetUnitOfMeasureQty sets UnitOfMeasureQty, Tag 1147. func (m NoRelatedSym) SetUnitOfMeasureQty(value decimal.Decimal, scale int32) { m.Set(field.NewUnitOfMeasureQty(value, scale)) } // SetSecurityXMLLen sets SecurityXMLLen, Tag 1184. func (m NoRelatedSym) SetSecurityXMLLen(v int) { m.Set(field.NewSecurityXMLLen(v)) } // SetSecurityXML sets SecurityXML, Tag 1185. func (m NoRelatedSym) SetSecurityXML(v string) { m.Set(field.NewSecurityXML(v)) } // SetSecurityXMLSchema sets SecurityXMLSchema, Tag 1186. func (m NoRelatedSym) SetSecurityXMLSchema(v string) { m.Set(field.NewSecurityXMLSchema(v)) } // SetProductComplex sets ProductComplex, Tag 1227. func (m NoRelatedSym) SetProductComplex(v string) { m.Set(field.NewProductComplex(v)) } // SetPriceUnitOfMeasure sets PriceUnitOfMeasure, Tag 1191. func (m NoRelatedSym) SetPriceUnitOfMeasure(v string) { m.Set(field.NewPriceUnitOfMeasure(v)) } // SetPriceUnitOfMeasureQty sets PriceUnitOfMeasureQty, Tag 1192. func (m NoRelatedSym) SetPriceUnitOfMeasureQty(value decimal.Decimal, scale int32) { m.Set(field.NewPriceUnitOfMeasureQty(value, scale)) } // SetSettlMethod sets SettlMethod, Tag 1193. func (m NoRelatedSym) SetSettlMethod(v enum.SettlMethod) { m.Set(field.NewSettlMethod(v)) } // SetExerciseStyle sets ExerciseStyle, Tag 1194. func (m NoRelatedSym) SetExerciseStyle(v enum.ExerciseStyle) { m.Set(field.NewExerciseStyle(v)) } // SetOptPayAmount sets OptPayAmount, Tag 1195. func (m NoRelatedSym) SetOptPayAmount(value decimal.Decimal, scale int32) { m.Set(field.NewOptPayAmount(value, scale)) } // SetPriceQuoteMethod sets PriceQuoteMethod, Tag 1196. func (m NoRelatedSym) SetPriceQuoteMethod(v enum.PriceQuoteMethod) { m.Set(field.NewPriceQuoteMethod(v)) } // SetListMethod sets ListMethod, Tag 1198. func (m NoRelatedSym) SetListMethod(v enum.ListMethod) { m.Set(field.NewListMethod(v)) } // SetCapPrice sets CapPrice, Tag 1199. func (m NoRelatedSym) SetCapPrice(value decimal.Decimal, scale int32) { m.Set(field.NewCapPrice(value, scale)) } // SetFloorPrice sets FloorPrice, Tag 1200. func (m NoRelatedSym) SetFloorPrice(value decimal.Decimal, scale int32) { m.Set(field.NewFloorPrice(value, scale)) } // SetPutOrCall sets PutOrCall, Tag 201. func (m NoRelatedSym) SetPutOrCall(v enum.PutOrCall) { m.Set(field.NewPutOrCall(v)) } // SetFlexibleIndicator sets FlexibleIndicator, Tag 1244. func (m NoRelatedSym) SetFlexibleIndicator(v bool) { m.Set(field.NewFlexibleIndicator(v)) } // SetFlexProductEligibilityIndicator sets FlexProductEligibilityIndicator, Tag 1242. func (m NoRelatedSym) SetFlexProductEligibilityIndicator(v bool) { m.Set(field.NewFlexProductEligibilityIndicator(v)) } // SetFuturesValuationMethod sets FuturesValuationMethod, Tag 1197. func (m NoRelatedSym) SetFuturesValuationMethod(v enum.FuturesValuationMethod) { m.Set(field.NewFuturesValuationMethod(v)) } // GetSymbol gets Symbol, Tag 55. func (m NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) GetNoSecurityAltID() (NoSecurityAltIDRepeatingGroup, quickfix.MessageRejectError) { f := NewNoSecurityAltIDRepeatingGroup() err := m.GetGroup(f) return f, err } // GetProduct gets Product, Tag 460. func (m NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) 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 NoRelatedSym) GetNoEvents() (NoEventsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoEventsRepeatingGroup() err := m.GetGroup(f) return f, err } // GetDatedDate gets DatedDate, Tag 873. func (m NoRelatedSym) 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 NoRelatedSym) GetInterestAccrualDate() (v string, err quickfix.MessageRejectError) { var f field.InterestAccrualDateField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityStatus gets SecurityStatus, Tag 965. func (m NoRelatedSym) GetSecurityStatus() (v enum.SecurityStatus, err quickfix.MessageRejectError) { var f field.SecurityStatusField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSettleOnOpenFlag gets SettleOnOpenFlag, Tag 966. func (m NoRelatedSym) GetSettleOnOpenFlag() (v string, err quickfix.MessageRejectError) { var f field.SettleOnOpenFlagField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetInstrmtAssignmentMethod gets InstrmtAssignmentMethod, Tag 1049. func (m NoRelatedSym) GetInstrmtAssignmentMethod() (v string, err quickfix.MessageRejectError) { var f field.InstrmtAssignmentMethodField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetStrikeMultiplier gets StrikeMultiplier, Tag 967. func (m NoRelatedSym) GetStrikeMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.StrikeMultiplierField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetStrikeValue gets StrikeValue, Tag 968. func (m NoRelatedSym) GetStrikeValue() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.StrikeValueField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetMinPriceIncrement gets MinPriceIncrement, Tag 969. func (m NoRelatedSym) GetMinPriceIncrement() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.MinPriceIncrementField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPositionLimit gets PositionLimit, Tag 970. func (m NoRelatedSym) GetPositionLimit() (v int, err quickfix.MessageRejectError) { var f field.PositionLimitField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNTPositionLimit gets NTPositionLimit, Tag 971. func (m NoRelatedSym) GetNTPositionLimit() (v int, err quickfix.MessageRejectError) { var f field.NTPositionLimitField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoInstrumentParties gets NoInstrumentParties, Tag 1018. func (m NoRelatedSym) GetNoInstrumentParties() (NoInstrumentPartiesRepeatingGroup, quickfix.MessageRejectError) { f := NewNoInstrumentPartiesRepeatingGroup() err := m.GetGroup(f) return f, err } // GetUnitOfMeasure gets UnitOfMeasure, Tag 996. func (m NoRelatedSym) GetUnitOfMeasure() (v enum.UnitOfMeasure, err quickfix.MessageRejectError) { var f field.UnitOfMeasureField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetTimeUnit gets TimeUnit, Tag 997. func (m NoRelatedSym) GetTimeUnit() (v enum.TimeUnit, err quickfix.MessageRejectError) { var f field.TimeUnitField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetMaturityTime gets MaturityTime, Tag 1079. func (m NoRelatedSym) GetMaturityTime() (v string, err quickfix.MessageRejectError) { var f field.MaturityTimeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityGroup gets SecurityGroup, Tag 1151. func (m NoRelatedSym) GetSecurityGroup() (v string, err quickfix.MessageRejectError) { var f field.SecurityGroupField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetMinPriceIncrementAmount gets MinPriceIncrementAmount, Tag 1146. func (m NoRelatedSym) GetMinPriceIncrementAmount() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.MinPriceIncrementAmountField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnitOfMeasureQty gets UnitOfMeasureQty, Tag 1147. func (m NoRelatedSym) GetUnitOfMeasureQty() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnitOfMeasureQtyField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityXMLLen gets SecurityXMLLen, Tag 1184. func (m NoRelatedSym) GetSecurityXMLLen() (v int, err quickfix.MessageRejectError) { var f field.SecurityXMLLenField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityXML gets SecurityXML, Tag 1185. func (m NoRelatedSym) GetSecurityXML() (v string, err quickfix.MessageRejectError) { var f field.SecurityXMLField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityXMLSchema gets SecurityXMLSchema, Tag 1186. func (m NoRelatedSym) GetSecurityXMLSchema() (v string, err quickfix.MessageRejectError) { var f field.SecurityXMLSchemaField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetProductComplex gets ProductComplex, Tag 1227. func (m NoRelatedSym) GetProductComplex() (v string, err quickfix.MessageRejectError) { var f field.ProductComplexField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPriceUnitOfMeasure gets PriceUnitOfMeasure, Tag 1191. func (m NoRelatedSym) GetPriceUnitOfMeasure() (v string, err quickfix.MessageRejectError) { var f field.PriceUnitOfMeasureField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPriceUnitOfMeasureQty gets PriceUnitOfMeasureQty, Tag 1192. func (m NoRelatedSym) GetPriceUnitOfMeasureQty() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.PriceUnitOfMeasureQtyField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSettlMethod gets SettlMethod, Tag 1193. func (m NoRelatedSym) GetSettlMethod() (v enum.SettlMethod, err quickfix.MessageRejectError) { var f field.SettlMethodField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetExerciseStyle gets ExerciseStyle, Tag 1194. func (m NoRelatedSym) GetExerciseStyle() (v enum.ExerciseStyle, err quickfix.MessageRejectError) { var f field.ExerciseStyleField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetOptPayAmount gets OptPayAmount, Tag 1195. func (m NoRelatedSym) GetOptPayAmount() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.OptPayAmountField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPriceQuoteMethod gets PriceQuoteMethod, Tag 1196. func (m NoRelatedSym) GetPriceQuoteMethod() (v enum.PriceQuoteMethod, err quickfix.MessageRejectError) { var f field.PriceQuoteMethodField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetListMethod gets ListMethod, Tag 1198. func (m NoRelatedSym) GetListMethod() (v enum.ListMethod, err quickfix.MessageRejectError) { var f field.ListMethodField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetCapPrice gets CapPrice, Tag 1199. func (m NoRelatedSym) GetCapPrice() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.CapPriceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetFloorPrice gets FloorPrice, Tag 1200. func (m NoRelatedSym) GetFloorPrice() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.FloorPriceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPutOrCall gets PutOrCall, Tag 201. func (m NoRelatedSym) GetPutOrCall() (v enum.PutOrCall, err quickfix.MessageRejectError) { var f field.PutOrCallField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetFlexibleIndicator gets FlexibleIndicator, Tag 1244. func (m NoRelatedSym) GetFlexibleIndicator() (v bool, err quickfix.MessageRejectError) { var f field.FlexibleIndicatorField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetFlexProductEligibilityIndicator gets FlexProductEligibilityIndicator, Tag 1242. func (m NoRelatedSym) GetFlexProductEligibilityIndicator() (v bool, err quickfix.MessageRejectError) { var f field.FlexProductEligibilityIndicatorField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetFuturesValuationMethod gets FuturesValuationMethod, Tag 1197. func (m NoRelatedSym) GetFuturesValuationMethod() (v enum.FuturesValuationMethod, err quickfix.MessageRejectError) { var f field.FuturesValuationMethodField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasSymbol returns true if Symbol is present, Tag 55. func (m NoRelatedSym) HasSymbol() bool { return m.Has(tag.Symbol) } // HasSymbolSfx returns true if SymbolSfx is present, Tag 65. func (m NoRelatedSym) HasSymbolSfx() bool { return m.Has(tag.SymbolSfx) } // HasSecurityID returns true if SecurityID is present, Tag 48. func (m NoRelatedSym) HasSecurityID() bool { return m.Has(tag.SecurityID) } // HasSecurityIDSource returns true if SecurityIDSource is present, Tag 22. func (m NoRelatedSym) HasSecurityIDSource() bool { return m.Has(tag.SecurityIDSource) } // HasNoSecurityAltID returns true if NoSecurityAltID is present, Tag 454. func (m NoRelatedSym) HasNoSecurityAltID() bool { return m.Has(tag.NoSecurityAltID) } // HasProduct returns true if Product is present, Tag 460. func (m NoRelatedSym) HasProduct() bool { return m.Has(tag.Product) } // HasCFICode returns true if CFICode is present, Tag 461. func (m NoRelatedSym) HasCFICode() bool { return m.Has(tag.CFICode) } // HasSecurityType returns true if SecurityType is present, Tag 167. func (m NoRelatedSym) HasSecurityType() bool { return m.Has(tag.SecurityType) } // HasSecuritySubType returns true if SecuritySubType is present, Tag 762. func (m NoRelatedSym) HasSecuritySubType() bool { return m.Has(tag.SecuritySubType) } // HasMaturityMonthYear returns true if MaturityMonthYear is present, Tag 200. func (m NoRelatedSym) HasMaturityMonthYear() bool { return m.Has(tag.MaturityMonthYear) } // HasMaturityDate returns true if MaturityDate is present, Tag 541. func (m NoRelatedSym) HasMaturityDate() bool { return m.Has(tag.MaturityDate) } // HasCouponPaymentDate returns true if CouponPaymentDate is present, Tag 224. func (m NoRelatedSym) HasCouponPaymentDate() bool { return m.Has(tag.CouponPaymentDate) } // HasIssueDate returns true if IssueDate is present, Tag 225. func (m NoRelatedSym) HasIssueDate() bool { return m.Has(tag.IssueDate) } // HasRepoCollateralSecurityType returns true if RepoCollateralSecurityType is present, Tag 239. func (m NoRelatedSym) HasRepoCollateralSecurityType() bool { return m.Has(tag.RepoCollateralSecurityType) } // HasRepurchaseTerm returns true if RepurchaseTerm is present, Tag 226. func (m NoRelatedSym) HasRepurchaseTerm() bool { return m.Has(tag.RepurchaseTerm) } // HasRepurchaseRate returns true if RepurchaseRate is present, Tag 227. func (m NoRelatedSym) HasRepurchaseRate() bool { return m.Has(tag.RepurchaseRate) } // HasFactor returns true if Factor is present, Tag 228. func (m NoRelatedSym) HasFactor() bool { return m.Has(tag.Factor) } // HasCreditRating returns true if CreditRating is present, Tag 255. func (m NoRelatedSym) HasCreditRating() bool { return m.Has(tag.CreditRating) } // HasInstrRegistry returns true if InstrRegistry is present, Tag 543. func (m NoRelatedSym) HasInstrRegistry() bool { return m.Has(tag.InstrRegistry) } // HasCountryOfIssue returns true if CountryOfIssue is present, Tag 470. func (m NoRelatedSym) HasCountryOfIssue() bool { return m.Has(tag.CountryOfIssue) } // HasStateOrProvinceOfIssue returns true if StateOrProvinceOfIssue is present, Tag 471. func (m NoRelatedSym) HasStateOrProvinceOfIssue() bool { return m.Has(tag.StateOrProvinceOfIssue) } // HasLocaleOfIssue returns true if LocaleOfIssue is present, Tag 472. func (m NoRelatedSym) HasLocaleOfIssue() bool { return m.Has(tag.LocaleOfIssue) } // HasRedemptionDate returns true if RedemptionDate is present, Tag 240. func (m NoRelatedSym) HasRedemptionDate() bool { return m.Has(tag.RedemptionDate) } // HasStrikePrice returns true if StrikePrice is present, Tag 202. func (m NoRelatedSym) HasStrikePrice() bool { return m.Has(tag.StrikePrice) } // HasStrikeCurrency returns true if StrikeCurrency is present, Tag 947. func (m NoRelatedSym) HasStrikeCurrency() bool { return m.Has(tag.StrikeCurrency) } // HasOptAttribute returns true if OptAttribute is present, Tag 206. func (m NoRelatedSym) HasOptAttribute() bool { return m.Has(tag.OptAttribute) } // HasContractMultiplier returns true if ContractMultiplier is present, Tag 231. func (m NoRelatedSym) HasContractMultiplier() bool { return m.Has(tag.ContractMultiplier) } // HasCouponRate returns true if CouponRate is present, Tag 223. func (m NoRelatedSym) HasCouponRate() bool { return m.Has(tag.CouponRate) } // HasSecurityExchange returns true if SecurityExchange is present, Tag 207. func (m NoRelatedSym) HasSecurityExchange() bool { return m.Has(tag.SecurityExchange) } // HasIssuer returns true if Issuer is present, Tag 106. func (m NoRelatedSym) HasIssuer() bool { return m.Has(tag.Issuer) } // HasEncodedIssuerLen returns true if EncodedIssuerLen is present, Tag 348. func (m NoRelatedSym) HasEncodedIssuerLen() bool { return m.Has(tag.EncodedIssuerLen) } // HasEncodedIssuer returns true if EncodedIssuer is present, Tag 349. func (m NoRelatedSym) HasEncodedIssuer() bool { return m.Has(tag.EncodedIssuer) } // HasSecurityDesc returns true if SecurityDesc is present, Tag 107. func (m NoRelatedSym) HasSecurityDesc() bool { return m.Has(tag.SecurityDesc) } // HasEncodedSecurityDescLen returns true if EncodedSecurityDescLen is present, Tag 350. func (m NoRelatedSym) HasEncodedSecurityDescLen() bool { return m.Has(tag.EncodedSecurityDescLen) } // HasEncodedSecurityDesc returns true if EncodedSecurityDesc is present, Tag 351. func (m NoRelatedSym) HasEncodedSecurityDesc() bool { return m.Has(tag.EncodedSecurityDesc) } // HasPool returns true if Pool is present, Tag 691. func (m NoRelatedSym) HasPool() bool { return m.Has(tag.Pool) } // HasContractSettlMonth returns true if ContractSettlMonth is present, Tag 667. func (m NoRelatedSym) HasContractSettlMonth() bool { return m.Has(tag.ContractSettlMonth) } // HasCPProgram returns true if CPProgram is present, Tag 875. func (m NoRelatedSym) HasCPProgram() bool { return m.Has(tag.CPProgram) } // HasCPRegType returns true if CPRegType is present, Tag 876. func (m NoRelatedSym) HasCPRegType() bool { return m.Has(tag.CPRegType) } // HasNoEvents returns true if NoEvents is present, Tag 864. func (m NoRelatedSym) HasNoEvents() bool { return m.Has(tag.NoEvents) } // HasDatedDate returns true if DatedDate is present, Tag 873. func (m NoRelatedSym) HasDatedDate() bool { return m.Has(tag.DatedDate) } // HasInterestAccrualDate returns true if InterestAccrualDate is present, Tag 874. func (m NoRelatedSym) HasInterestAccrualDate() bool { return m.Has(tag.InterestAccrualDate) } // HasSecurityStatus returns true if SecurityStatus is present, Tag 965. func (m NoRelatedSym) HasSecurityStatus() bool { return m.Has(tag.SecurityStatus) } // HasSettleOnOpenFlag returns true if SettleOnOpenFlag is present, Tag 966. func (m NoRelatedSym) HasSettleOnOpenFlag() bool { return m.Has(tag.SettleOnOpenFlag) } // HasInstrmtAssignmentMethod returns true if InstrmtAssignmentMethod is present, Tag 1049. func (m NoRelatedSym) HasInstrmtAssignmentMethod() bool { return m.Has(tag.InstrmtAssignmentMethod) } // HasStrikeMultiplier returns true if StrikeMultiplier is present, Tag 967. func (m NoRelatedSym) HasStrikeMultiplier() bool { return m.Has(tag.StrikeMultiplier) } // HasStrikeValue returns true if StrikeValue is present, Tag 968. func (m NoRelatedSym) HasStrikeValue() bool { return m.Has(tag.StrikeValue) } // HasMinPriceIncrement returns true if MinPriceIncrement is present, Tag 969. func (m NoRelatedSym) HasMinPriceIncrement() bool { return m.Has(tag.MinPriceIncrement) } // HasPositionLimit returns true if PositionLimit is present, Tag 970. func (m NoRelatedSym) HasPositionLimit() bool { return m.Has(tag.PositionLimit) } // HasNTPositionLimit returns true if NTPositionLimit is present, Tag 971. func (m NoRelatedSym) HasNTPositionLimit() bool { return m.Has(tag.NTPositionLimit) } // HasNoInstrumentParties returns true if NoInstrumentParties is present, Tag 1018. func (m NoRelatedSym) HasNoInstrumentParties() bool { return m.Has(tag.NoInstrumentParties) } // HasUnitOfMeasure returns true if UnitOfMeasure is present, Tag 996. func (m NoRelatedSym) HasUnitOfMeasure() bool { return m.Has(tag.UnitOfMeasure) } // HasTimeUnit returns true if TimeUnit is present, Tag 997. func (m NoRelatedSym) HasTimeUnit() bool { return m.Has(tag.TimeUnit) } // HasMaturityTime returns true if MaturityTime is present, Tag 1079. func (m NoRelatedSym) HasMaturityTime() bool { return m.Has(tag.MaturityTime) } // HasSecurityGroup returns true if SecurityGroup is present, Tag 1151. func (m NoRelatedSym) HasSecurityGroup() bool { return m.Has(tag.SecurityGroup) } // HasMinPriceIncrementAmount returns true if MinPriceIncrementAmount is present, Tag 1146. func (m NoRelatedSym) HasMinPriceIncrementAmount() bool { return m.Has(tag.MinPriceIncrementAmount) } // HasUnitOfMeasureQty returns true if UnitOfMeasureQty is present, Tag 1147. func (m NoRelatedSym) HasUnitOfMeasureQty() bool { return m.Has(tag.UnitOfMeasureQty) } // HasSecurityXMLLen returns true if SecurityXMLLen is present, Tag 1184. func (m NoRelatedSym) HasSecurityXMLLen() bool { return m.Has(tag.SecurityXMLLen) } // HasSecurityXML returns true if SecurityXML is present, Tag 1185. func (m NoRelatedSym) HasSecurityXML() bool { return m.Has(tag.SecurityXML) } // HasSecurityXMLSchema returns true if SecurityXMLSchema is present, Tag 1186. func (m NoRelatedSym) HasSecurityXMLSchema() bool { return m.Has(tag.SecurityXMLSchema) } // HasProductComplex returns true if ProductComplex is present, Tag 1227. func (m NoRelatedSym) HasProductComplex() bool { return m.Has(tag.ProductComplex) } // HasPriceUnitOfMeasure returns true if PriceUnitOfMeasure is present, Tag 1191. func (m NoRelatedSym) HasPriceUnitOfMeasure() bool { return m.Has(tag.PriceUnitOfMeasure) } // HasPriceUnitOfMeasureQty returns true if PriceUnitOfMeasureQty is present, Tag 1192. func (m NoRelatedSym) HasPriceUnitOfMeasureQty() bool { return m.Has(tag.PriceUnitOfMeasureQty) } // HasSettlMethod returns true if SettlMethod is present, Tag 1193. func (m NoRelatedSym) HasSettlMethod() bool { return m.Has(tag.SettlMethod) } // HasExerciseStyle returns true if ExerciseStyle is present, Tag 1194. func (m NoRelatedSym) HasExerciseStyle() bool { return m.Has(tag.ExerciseStyle) } // HasOptPayAmount returns true if OptPayAmount is present, Tag 1195. func (m NoRelatedSym) HasOptPayAmount() bool { return m.Has(tag.OptPayAmount) } // HasPriceQuoteMethod returns true if PriceQuoteMethod is present, Tag 1196. func (m NoRelatedSym) HasPriceQuoteMethod() bool { return m.Has(tag.PriceQuoteMethod) } // HasListMethod returns true if ListMethod is present, Tag 1198. func (m NoRelatedSym) HasListMethod() bool { return m.Has(tag.ListMethod) } // HasCapPrice returns true if CapPrice is present, Tag 1199. func (m NoRelatedSym) HasCapPrice() bool { return m.Has(tag.CapPrice) } // HasFloorPrice returns true if FloorPrice is present, Tag 1200. func (m NoRelatedSym) HasFloorPrice() bool { return m.Has(tag.FloorPrice) } // HasPutOrCall returns true if PutOrCall is present, Tag 201. func (m NoRelatedSym) HasPutOrCall() bool { return m.Has(tag.PutOrCall) } // HasFlexibleIndicator returns true if FlexibleIndicator is present, Tag 1244. func (m NoRelatedSym) HasFlexibleIndicator() bool { return m.Has(tag.FlexibleIndicator) } // HasFlexProductEligibilityIndicator returns true if FlexProductEligibilityIndicator is present, Tag 1242. func (m NoRelatedSym) HasFlexProductEligibilityIndicator() bool { return m.Has(tag.FlexProductEligibilityIndicator) } // HasFuturesValuationMethod returns true if FuturesValuationMethod is present, Tag 1197. func (m NoRelatedSym) HasFuturesValuationMethod() bool { return m.Has(tag.FuturesValuationMethod) } // 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)) } // SetEventTime sets EventTime, Tag 1145. func (m NoEvents) SetEventTime(v time.Time) { m.Set(field.NewEventTime(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 } // GetEventTime gets EventTime, Tag 1145. func (m NoEvents) GetEventTime() (v time.Time, err quickfix.MessageRejectError) { var f field.EventTimeField 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) } // HasEventTime returns true if EventTime is present, Tag 1145. func (m NoEvents) HasEventTime() bool { return m.Has(tag.EventTime) } // 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), quickfix.GroupElement(tag.EventTime), }, ), } } // 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)} } // NoInstrumentParties is a repeating group element, Tag 1018. type NoInstrumentParties struct { *quickfix.Group } // SetInstrumentPartyID sets InstrumentPartyID, Tag 1019. func (m NoInstrumentParties) SetInstrumentPartyID(v string) { m.Set(field.NewInstrumentPartyID(v)) } // SetInstrumentPartyIDSource sets InstrumentPartyIDSource, Tag 1050. func (m NoInstrumentParties) SetInstrumentPartyIDSource(v string) { m.Set(field.NewInstrumentPartyIDSource(v)) } // SetInstrumentPartyRole sets InstrumentPartyRole, Tag 1051. func (m NoInstrumentParties) SetInstrumentPartyRole(v int) { m.Set(field.NewInstrumentPartyRole(v)) } // SetNoInstrumentPartySubIDs sets NoInstrumentPartySubIDs, Tag 1052. func (m NoInstrumentParties) SetNoInstrumentPartySubIDs(f NoInstrumentPartySubIDsRepeatingGroup) { m.SetGroup(f) } // GetInstrumentPartyID gets InstrumentPartyID, Tag 1019. func (m NoInstrumentParties) GetInstrumentPartyID() (v string, err quickfix.MessageRejectError) { var f field.InstrumentPartyIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetInstrumentPartyIDSource gets InstrumentPartyIDSource, Tag 1050. func (m NoInstrumentParties) GetInstrumentPartyIDSource() (v string, err quickfix.MessageRejectError) { var f field.InstrumentPartyIDSourceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetInstrumentPartyRole gets InstrumentPartyRole, Tag 1051. func (m NoInstrumentParties) GetInstrumentPartyRole() (v int, err quickfix.MessageRejectError) { var f field.InstrumentPartyRoleField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoInstrumentPartySubIDs gets NoInstrumentPartySubIDs, Tag 1052. func (m NoInstrumentParties) GetNoInstrumentPartySubIDs() (NoInstrumentPartySubIDsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoInstrumentPartySubIDsRepeatingGroup() err := m.GetGroup(f) return f, err } // HasInstrumentPartyID returns true if InstrumentPartyID is present, Tag 1019. func (m NoInstrumentParties) HasInstrumentPartyID() bool { return m.Has(tag.InstrumentPartyID) } // HasInstrumentPartyIDSource returns true if InstrumentPartyIDSource is present, Tag 1050. func (m NoInstrumentParties) HasInstrumentPartyIDSource() bool { return m.Has(tag.InstrumentPartyIDSource) } // HasInstrumentPartyRole returns true if InstrumentPartyRole is present, Tag 1051. func (m NoInstrumentParties) HasInstrumentPartyRole() bool { return m.Has(tag.InstrumentPartyRole) } // HasNoInstrumentPartySubIDs returns true if NoInstrumentPartySubIDs is present, Tag 1052. func (m NoInstrumentParties) HasNoInstrumentPartySubIDs() bool { return m.Has(tag.NoInstrumentPartySubIDs) } // NoInstrumentPartySubIDs is a repeating group element, Tag 1052. type NoInstrumentPartySubIDs struct { *quickfix.Group } // SetInstrumentPartySubID sets InstrumentPartySubID, Tag 1053. func (m NoInstrumentPartySubIDs) SetInstrumentPartySubID(v string) { m.Set(field.NewInstrumentPartySubID(v)) } // SetInstrumentPartySubIDType sets InstrumentPartySubIDType, Tag 1054. func (m NoInstrumentPartySubIDs) SetInstrumentPartySubIDType(v int) { m.Set(field.NewInstrumentPartySubIDType(v)) } // GetInstrumentPartySubID gets InstrumentPartySubID, Tag 1053. func (m NoInstrumentPartySubIDs) GetInstrumentPartySubID() (v string, err quickfix.MessageRejectError) { var f field.InstrumentPartySubIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetInstrumentPartySubIDType gets InstrumentPartySubIDType, Tag 1054. func (m NoInstrumentPartySubIDs) GetInstrumentPartySubIDType() (v int, err quickfix.MessageRejectError) { var f field.InstrumentPartySubIDTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasInstrumentPartySubID returns true if InstrumentPartySubID is present, Tag 1053. func (m NoInstrumentPartySubIDs) HasInstrumentPartySubID() bool { return m.Has(tag.InstrumentPartySubID) } // HasInstrumentPartySubIDType returns true if InstrumentPartySubIDType is present, Tag 1054. func (m NoInstrumentPartySubIDs) HasInstrumentPartySubIDType() bool { return m.Has(tag.InstrumentPartySubIDType) } // NoInstrumentPartySubIDsRepeatingGroup is a repeating group, Tag 1052. type NoInstrumentPartySubIDsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoInstrumentPartySubIDsRepeatingGroup returns an initialized, NoInstrumentPartySubIDsRepeatingGroup. func NewNoInstrumentPartySubIDsRepeatingGroup() NoInstrumentPartySubIDsRepeatingGroup { return NoInstrumentPartySubIDsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoInstrumentPartySubIDs, quickfix.GroupTemplate{ quickfix.GroupElement(tag.InstrumentPartySubID), quickfix.GroupElement(tag.InstrumentPartySubIDType), }, ), } } // Add create and append a new NoInstrumentPartySubIDs to this group. func (m NoInstrumentPartySubIDsRepeatingGroup) Add() NoInstrumentPartySubIDs { g := m.RepeatingGroup.Add() return NoInstrumentPartySubIDs{g} } // Get returns the ith NoInstrumentPartySubIDs in the NoInstrumentPartySubIDsRepeatinGroup. func (m NoInstrumentPartySubIDsRepeatingGroup) Get(i int) NoInstrumentPartySubIDs { return NoInstrumentPartySubIDs{m.RepeatingGroup.Get(i)} } // NoInstrumentPartiesRepeatingGroup is a repeating group, Tag 1018. type NoInstrumentPartiesRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoInstrumentPartiesRepeatingGroup returns an initialized, NoInstrumentPartiesRepeatingGroup. func NewNoInstrumentPartiesRepeatingGroup() NoInstrumentPartiesRepeatingGroup { return NoInstrumentPartiesRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoInstrumentParties, quickfix.GroupTemplate{ quickfix.GroupElement(tag.InstrumentPartyID), quickfix.GroupElement(tag.InstrumentPartyIDSource), quickfix.GroupElement(tag.InstrumentPartyRole), NewNoInstrumentPartySubIDsRepeatingGroup(), }, ), } } // Add create and append a new NoInstrumentParties to this group. func (m NoInstrumentPartiesRepeatingGroup) Add() NoInstrumentParties { g := m.RepeatingGroup.Add() return NoInstrumentParties{g} } // Get returns the ith NoInstrumentParties in the NoInstrumentPartiesRepeatinGroup. func (m NoInstrumentPartiesRepeatingGroup) Get(i int) NoInstrumentParties { return NoInstrumentParties{m.RepeatingGroup.Get(i)} } // NoRelatedSymRepeatingGroup is a repeating group, Tag 146. type NoRelatedSymRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoRelatedSymRepeatingGroup returns an initialized, NoRelatedSymRepeatingGroup. func NewNoRelatedSymRepeatingGroup() NoRelatedSymRepeatingGroup { return NoRelatedSymRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoRelatedSym, quickfix.GroupTemplate{ 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), quickfix.GroupElement(tag.SecurityStatus), quickfix.GroupElement(tag.SettleOnOpenFlag), quickfix.GroupElement(tag.InstrmtAssignmentMethod), quickfix.GroupElement(tag.StrikeMultiplier), quickfix.GroupElement(tag.StrikeValue), quickfix.GroupElement(tag.MinPriceIncrement), quickfix.GroupElement(tag.PositionLimit), quickfix.GroupElement(tag.NTPositionLimit), NewNoInstrumentPartiesRepeatingGroup(), quickfix.GroupElement(tag.UnitOfMeasure), quickfix.GroupElement(tag.TimeUnit), quickfix.GroupElement(tag.MaturityTime), quickfix.GroupElement(tag.SecurityGroup), quickfix.GroupElement(tag.MinPriceIncrementAmount), quickfix.GroupElement(tag.UnitOfMeasureQty), quickfix.GroupElement(tag.SecurityXMLLen), quickfix.GroupElement(tag.SecurityXML), quickfix.GroupElement(tag.SecurityXMLSchema), quickfix.GroupElement(tag.ProductComplex), quickfix.GroupElement(tag.PriceUnitOfMeasure), quickfix.GroupElement(tag.PriceUnitOfMeasureQty), quickfix.GroupElement(tag.SettlMethod), quickfix.GroupElement(tag.ExerciseStyle), quickfix.GroupElement(tag.OptPayAmount), quickfix.GroupElement(tag.PriceQuoteMethod), quickfix.GroupElement(tag.ListMethod), quickfix.GroupElement(tag.CapPrice), quickfix.GroupElement(tag.FloorPrice), quickfix.GroupElement(tag.PutOrCall), quickfix.GroupElement(tag.FlexibleIndicator), quickfix.GroupElement(tag.FlexProductEligibilityIndicator), quickfix.GroupElement(tag.FuturesValuationMethod), }, ), } } // Add create and append a new NoRelatedSym to this group. func (m NoRelatedSymRepeatingGroup) Add() NoRelatedSym { g := m.RepeatingGroup.Add() return NoRelatedSym{g} } // Get returns the ith NoRelatedSym in the NoRelatedSymRepeatinGroup. func (m NoRelatedSymRepeatingGroup) Get(i int) NoRelatedSym { return NoRelatedSym{m.RepeatingGroup.Get(i)} } // NoPartyIDs is a repeating group element, Tag 453. type NoPartyIDs struct { *quickfix.Group } // SetPartyID sets PartyID, Tag 448. func (m NoPartyIDs) SetPartyID(v string) { m.Set(field.NewPartyID(v)) } // SetPartyIDSource sets PartyIDSource, Tag 447. func (m NoPartyIDs) SetPartyIDSource(v enum.PartyIDSource) { m.Set(field.NewPartyIDSource(v)) } // SetPartyRole sets PartyRole, Tag 452. func (m NoPartyIDs) SetPartyRole(v enum.PartyRole) { m.Set(field.NewPartyRole(v)) } // SetNoPartySubIDs sets NoPartySubIDs, Tag 802. func (m NoPartyIDs) SetNoPartySubIDs(f NoPartySubIDsRepeatingGroup) { m.SetGroup(f) } // GetPartyID gets PartyID, Tag 448. func (m NoPartyIDs) GetPartyID() (v string, err quickfix.MessageRejectError) { var f field.PartyIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPartyIDSource gets PartyIDSource, Tag 447. func (m NoPartyIDs) GetPartyIDSource() (v enum.PartyIDSource, err quickfix.MessageRejectError) { var f field.PartyIDSourceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPartyRole gets PartyRole, Tag 452. func (m NoPartyIDs) GetPartyRole() (v enum.PartyRole, err quickfix.MessageRejectError) { var f field.PartyRoleField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoPartySubIDs gets NoPartySubIDs, Tag 802. func (m NoPartyIDs) GetNoPartySubIDs() (NoPartySubIDsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoPartySubIDsRepeatingGroup() err := m.GetGroup(f) return f, err } // HasPartyID returns true if PartyID is present, Tag 448. func (m NoPartyIDs) HasPartyID() bool { return m.Has(tag.PartyID) } // HasPartyIDSource returns true if PartyIDSource is present, Tag 447. func (m NoPartyIDs) HasPartyIDSource() bool { return m.Has(tag.PartyIDSource) } // HasPartyRole returns true if PartyRole is present, Tag 452. func (m NoPartyIDs) HasPartyRole() bool { return m.Has(tag.PartyRole) } // HasNoPartySubIDs returns true if NoPartySubIDs is present, Tag 802. func (m NoPartyIDs) HasNoPartySubIDs() bool { return m.Has(tag.NoPartySubIDs) } // NoPartySubIDs is a repeating group element, Tag 802. type NoPartySubIDs struct { *quickfix.Group } // SetPartySubID sets PartySubID, Tag 523. func (m NoPartySubIDs) SetPartySubID(v string) { m.Set(field.NewPartySubID(v)) } // SetPartySubIDType sets PartySubIDType, Tag 803. func (m NoPartySubIDs) SetPartySubIDType(v enum.PartySubIDType) { m.Set(field.NewPartySubIDType(v)) } // GetPartySubID gets PartySubID, Tag 523. func (m NoPartySubIDs) GetPartySubID() (v string, err quickfix.MessageRejectError) { var f field.PartySubIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPartySubIDType gets PartySubIDType, Tag 803. func (m NoPartySubIDs) GetPartySubIDType() (v enum.PartySubIDType, err quickfix.MessageRejectError) { var f field.PartySubIDTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasPartySubID returns true if PartySubID is present, Tag 523. func (m NoPartySubIDs) HasPartySubID() bool { return m.Has(tag.PartySubID) } // HasPartySubIDType returns true if PartySubIDType is present, Tag 803. func (m NoPartySubIDs) HasPartySubIDType() bool { return m.Has(tag.PartySubIDType) } // NoPartySubIDsRepeatingGroup is a repeating group, Tag 802. type NoPartySubIDsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoPartySubIDsRepeatingGroup returns an initialized, NoPartySubIDsRepeatingGroup. func NewNoPartySubIDsRepeatingGroup() NoPartySubIDsRepeatingGroup { return NoPartySubIDsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoPartySubIDs, quickfix.GroupTemplate{ quickfix.GroupElement(tag.PartySubID), quickfix.GroupElement(tag.PartySubIDType), }, ), } } // Add create and append a new NoPartySubIDs to this group. func (m NoPartySubIDsRepeatingGroup) Add() NoPartySubIDs { g := m.RepeatingGroup.Add() return NoPartySubIDs{g} } // Get returns the ith NoPartySubIDs in the NoPartySubIDsRepeatinGroup. func (m NoPartySubIDsRepeatingGroup) Get(i int) NoPartySubIDs { return NoPartySubIDs{m.RepeatingGroup.Get(i)} } // NoPartyIDsRepeatingGroup is a repeating group, Tag 453. type NoPartyIDsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoPartyIDsRepeatingGroup returns an initialized, NoPartyIDsRepeatingGroup. func NewNoPartyIDsRepeatingGroup() NoPartyIDsRepeatingGroup { return NoPartyIDsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoPartyIDs, quickfix.GroupTemplate{ quickfix.GroupElement(tag.PartyID), quickfix.GroupElement(tag.PartyIDSource), quickfix.GroupElement(tag.PartyRole), NewNoPartySubIDsRepeatingGroup(), }, ), } } // Add create and append a new NoPartyIDs to this group. func (m NoPartyIDsRepeatingGroup) Add() NoPartyIDs { g := m.RepeatingGroup.Add() return NoPartyIDs{g} } // Get returns the ith NoPartyIDs in the NoPartyIDsRepeatinGroup. func (m NoPartyIDsRepeatingGroup) Get(i int) NoPartyIDs { return NoPartyIDs{m.RepeatingGroup.Get(i)} } // NoPositions is a repeating group element, Tag 702. type NoPositions struct { *quickfix.Group } // SetPosType sets PosType, Tag 703. func (m NoPositions) SetPosType(v enum.PosType) { m.Set(field.NewPosType(v)) } // SetLongQty sets LongQty, Tag 704. func (m NoPositions) SetLongQty(value decimal.Decimal, scale int32) { m.Set(field.NewLongQty(value, scale)) } // SetShortQty sets ShortQty, Tag 705. func (m NoPositions) SetShortQty(value decimal.Decimal, scale int32) { m.Set(field.NewShortQty(value, scale)) } // SetPosQtyStatus sets PosQtyStatus, Tag 706. func (m NoPositions) SetPosQtyStatus(v enum.PosQtyStatus) { m.Set(field.NewPosQtyStatus(v)) } // SetNoNestedPartyIDs sets NoNestedPartyIDs, Tag 539. func (m NoPositions) SetNoNestedPartyIDs(f NoNestedPartyIDsRepeatingGroup) { m.SetGroup(f) } // SetQuantityDate sets QuantityDate, Tag 976. func (m NoPositions) SetQuantityDate(v string) { m.Set(field.NewQuantityDate(v)) } // GetPosType gets PosType, Tag 703. func (m NoPositions) GetPosType() (v enum.PosType, err quickfix.MessageRejectError) { var f field.PosTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetLongQty gets LongQty, Tag 704. func (m NoPositions) GetLongQty() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.LongQtyField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetShortQty gets ShortQty, Tag 705. func (m NoPositions) GetShortQty() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.ShortQtyField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPosQtyStatus gets PosQtyStatus, Tag 706. func (m NoPositions) GetPosQtyStatus() (v enum.PosQtyStatus, err quickfix.MessageRejectError) { var f field.PosQtyStatusField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoNestedPartyIDs gets NoNestedPartyIDs, Tag 539. func (m NoPositions) GetNoNestedPartyIDs() (NoNestedPartyIDsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoNestedPartyIDsRepeatingGroup() err := m.GetGroup(f) return f, err } // GetQuantityDate gets QuantityDate, Tag 976. func (m NoPositions) GetQuantityDate() (v string, err quickfix.MessageRejectError) { var f field.QuantityDateField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasPosType returns true if PosType is present, Tag 703. func (m NoPositions) HasPosType() bool { return m.Has(tag.PosType) } // HasLongQty returns true if LongQty is present, Tag 704. func (m NoPositions) HasLongQty() bool { return m.Has(tag.LongQty) } // HasShortQty returns true if ShortQty is present, Tag 705. func (m NoPositions) HasShortQty() bool { return m.Has(tag.ShortQty) } // HasPosQtyStatus returns true if PosQtyStatus is present, Tag 706. func (m NoPositions) HasPosQtyStatus() bool { return m.Has(tag.PosQtyStatus) } // HasNoNestedPartyIDs returns true if NoNestedPartyIDs is present, Tag 539. func (m NoPositions) HasNoNestedPartyIDs() bool { return m.Has(tag.NoNestedPartyIDs) } // HasQuantityDate returns true if QuantityDate is present, Tag 976. func (m NoPositions) HasQuantityDate() bool { return m.Has(tag.QuantityDate) } // NoNestedPartyIDs is a repeating group element, Tag 539. type NoNestedPartyIDs struct { *quickfix.Group } // SetNestedPartyID sets NestedPartyID, Tag 524. func (m NoNestedPartyIDs) SetNestedPartyID(v string) { m.Set(field.NewNestedPartyID(v)) } // SetNestedPartyIDSource sets NestedPartyIDSource, Tag 525. func (m NoNestedPartyIDs) SetNestedPartyIDSource(v string) { m.Set(field.NewNestedPartyIDSource(v)) } // SetNestedPartyRole sets NestedPartyRole, Tag 538. func (m NoNestedPartyIDs) SetNestedPartyRole(v int) { m.Set(field.NewNestedPartyRole(v)) } // SetNoNestedPartySubIDs sets NoNestedPartySubIDs, Tag 804. func (m NoNestedPartyIDs) SetNoNestedPartySubIDs(f NoNestedPartySubIDsRepeatingGroup) { m.SetGroup(f) } // GetNestedPartyID gets NestedPartyID, Tag 524. func (m NoNestedPartyIDs) GetNestedPartyID() (v string, err quickfix.MessageRejectError) { var f field.NestedPartyIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNestedPartyIDSource gets NestedPartyIDSource, Tag 525. func (m NoNestedPartyIDs) GetNestedPartyIDSource() (v string, err quickfix.MessageRejectError) { var f field.NestedPartyIDSourceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNestedPartyRole gets NestedPartyRole, Tag 538. func (m NoNestedPartyIDs) GetNestedPartyRole() (v int, err quickfix.MessageRejectError) { var f field.NestedPartyRoleField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoNestedPartySubIDs gets NoNestedPartySubIDs, Tag 804. func (m NoNestedPartyIDs) GetNoNestedPartySubIDs() (NoNestedPartySubIDsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoNestedPartySubIDsRepeatingGroup() err := m.GetGroup(f) return f, err } // HasNestedPartyID returns true if NestedPartyID is present, Tag 524. func (m NoNestedPartyIDs) HasNestedPartyID() bool { return m.Has(tag.NestedPartyID) } // HasNestedPartyIDSource returns true if NestedPartyIDSource is present, Tag 525. func (m NoNestedPartyIDs) HasNestedPartyIDSource() bool { return m.Has(tag.NestedPartyIDSource) } // HasNestedPartyRole returns true if NestedPartyRole is present, Tag 538. func (m NoNestedPartyIDs) HasNestedPartyRole() bool { return m.Has(tag.NestedPartyRole) } // HasNoNestedPartySubIDs returns true if NoNestedPartySubIDs is present, Tag 804. func (m NoNestedPartyIDs) HasNoNestedPartySubIDs() bool { return m.Has(tag.NoNestedPartySubIDs) } // NoNestedPartySubIDs is a repeating group element, Tag 804. type NoNestedPartySubIDs struct { *quickfix.Group } // SetNestedPartySubID sets NestedPartySubID, Tag 545. func (m NoNestedPartySubIDs) SetNestedPartySubID(v string) { m.Set(field.NewNestedPartySubID(v)) } // SetNestedPartySubIDType sets NestedPartySubIDType, Tag 805. func (m NoNestedPartySubIDs) SetNestedPartySubIDType(v int) { m.Set(field.NewNestedPartySubIDType(v)) } // GetNestedPartySubID gets NestedPartySubID, Tag 545. func (m NoNestedPartySubIDs) GetNestedPartySubID() (v string, err quickfix.MessageRejectError) { var f field.NestedPartySubIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNestedPartySubIDType gets NestedPartySubIDType, Tag 805. func (m NoNestedPartySubIDs) GetNestedPartySubIDType() (v int, err quickfix.MessageRejectError) { var f field.NestedPartySubIDTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasNestedPartySubID returns true if NestedPartySubID is present, Tag 545. func (m NoNestedPartySubIDs) HasNestedPartySubID() bool { return m.Has(tag.NestedPartySubID) } // HasNestedPartySubIDType returns true if NestedPartySubIDType is present, Tag 805. func (m NoNestedPartySubIDs) HasNestedPartySubIDType() bool { return m.Has(tag.NestedPartySubIDType) } // NoNestedPartySubIDsRepeatingGroup is a repeating group, Tag 804. type NoNestedPartySubIDsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoNestedPartySubIDsRepeatingGroup returns an initialized, NoNestedPartySubIDsRepeatingGroup. func NewNoNestedPartySubIDsRepeatingGroup() NoNestedPartySubIDsRepeatingGroup { return NoNestedPartySubIDsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoNestedPartySubIDs, quickfix.GroupTemplate{ quickfix.GroupElement(tag.NestedPartySubID), quickfix.GroupElement(tag.NestedPartySubIDType), }, ), } } // Add create and append a new NoNestedPartySubIDs to this group. func (m NoNestedPartySubIDsRepeatingGroup) Add() NoNestedPartySubIDs { g := m.RepeatingGroup.Add() return NoNestedPartySubIDs{g} } // Get returns the ith NoNestedPartySubIDs in the NoNestedPartySubIDsRepeatinGroup. func (m NoNestedPartySubIDsRepeatingGroup) Get(i int) NoNestedPartySubIDs { return NoNestedPartySubIDs{m.RepeatingGroup.Get(i)} } // NoNestedPartyIDsRepeatingGroup is a repeating group, Tag 539. type NoNestedPartyIDsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoNestedPartyIDsRepeatingGroup returns an initialized, NoNestedPartyIDsRepeatingGroup. func NewNoNestedPartyIDsRepeatingGroup() NoNestedPartyIDsRepeatingGroup { return NoNestedPartyIDsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoNestedPartyIDs, quickfix.GroupTemplate{ quickfix.GroupElement(tag.NestedPartyID), quickfix.GroupElement(tag.NestedPartyIDSource), quickfix.GroupElement(tag.NestedPartyRole), NewNoNestedPartySubIDsRepeatingGroup(), }, ), } } // Add create and append a new NoNestedPartyIDs to this group. func (m NoNestedPartyIDsRepeatingGroup) Add() NoNestedPartyIDs { g := m.RepeatingGroup.Add() return NoNestedPartyIDs{g} } // Get returns the ith NoNestedPartyIDs in the NoNestedPartyIDsRepeatinGroup. func (m NoNestedPartyIDsRepeatingGroup) Get(i int) NoNestedPartyIDs { return NoNestedPartyIDs{m.RepeatingGroup.Get(i)} } // NoPositionsRepeatingGroup is a repeating group, Tag 702. type NoPositionsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoPositionsRepeatingGroup returns an initialized, NoPositionsRepeatingGroup. func NewNoPositionsRepeatingGroup() NoPositionsRepeatingGroup { return NoPositionsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoPositions, quickfix.GroupTemplate{ quickfix.GroupElement(tag.PosType), quickfix.GroupElement(tag.LongQty), quickfix.GroupElement(tag.ShortQty), quickfix.GroupElement(tag.PosQtyStatus), NewNoNestedPartyIDsRepeatingGroup(), quickfix.GroupElement(tag.QuantityDate), }, ), } } // Add create and append a new NoPositions to this group. func (m NoPositionsRepeatingGroup) Add() NoPositions { g := m.RepeatingGroup.Add() return NoPositions{g} } // Get returns the ith NoPositions in the NoPositionsRepeatinGroup. func (m NoPositionsRepeatingGroup) Get(i int) NoPositions { return NoPositions{m.RepeatingGroup.Get(i)} }