// Code generated by quickfix. DO NOT EDIT. package derivativesecuritylistrequest import ( "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" ) // DerivativeSecurityListRequest is the fix50 DerivativeSecurityListRequest type, MsgType = z. type DerivativeSecurityListRequest struct { fixt11.Header *quickfix.Body fixt11.Trailer Message *quickfix.Message } // FromMessage creates a DerivativeSecurityListRequest from a quickfix.Message instance. func FromMessage(m *quickfix.Message) DerivativeSecurityListRequest { return DerivativeSecurityListRequest{ 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 DerivativeSecurityListRequest) ToMessage() *quickfix.Message { return m.Message } // New returns a DerivativeSecurityListRequest initialized with the required fields for DerivativeSecurityListRequest. func New(securityreqid field.SecurityReqIDField, securitylistrequesttype field.SecurityListRequestTypeField) (m DerivativeSecurityListRequest) { 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("z")) m.Set(securityreqid) m.Set(securitylistrequesttype) return } // A RouteOut is the callback type that should be implemented for routing Message. type RouteOut func(msg DerivativeSecurityListRequest, 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 "7", "z", r } // SetCurrency sets Currency, Tag 15. func (m DerivativeSecurityListRequest) SetCurrency(v string) { m.Set(field.NewCurrency(v)) } // SetText sets Text, Tag 58. func (m DerivativeSecurityListRequest) SetText(v string) { m.Set(field.NewText(v)) } // SetUnderlyingCouponPaymentDate sets UnderlyingCouponPaymentDate, Tag 241. func (m DerivativeSecurityListRequest) SetUnderlyingCouponPaymentDate(v string) { m.Set(field.NewUnderlyingCouponPaymentDate(v)) } // SetUnderlyingIssueDate sets UnderlyingIssueDate, Tag 242. func (m DerivativeSecurityListRequest) SetUnderlyingIssueDate(v string) { m.Set(field.NewUnderlyingIssueDate(v)) } // SetUnderlyingRepoCollateralSecurityType sets UnderlyingRepoCollateralSecurityType, Tag 243. func (m DerivativeSecurityListRequest) SetUnderlyingRepoCollateralSecurityType(v int) { m.Set(field.NewUnderlyingRepoCollateralSecurityType(v)) } // SetUnderlyingRepurchaseTerm sets UnderlyingRepurchaseTerm, Tag 244. func (m DerivativeSecurityListRequest) SetUnderlyingRepurchaseTerm(v int) { m.Set(field.NewUnderlyingRepurchaseTerm(v)) } // SetUnderlyingRepurchaseRate sets UnderlyingRepurchaseRate, Tag 245. func (m DerivativeSecurityListRequest) SetUnderlyingRepurchaseRate(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingRepurchaseRate(value, scale)) } // SetUnderlyingFactor sets UnderlyingFactor, Tag 246. func (m DerivativeSecurityListRequest) SetUnderlyingFactor(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingFactor(value, scale)) } // SetUnderlyingRedemptionDate sets UnderlyingRedemptionDate, Tag 247. func (m DerivativeSecurityListRequest) SetUnderlyingRedemptionDate(v string) { m.Set(field.NewUnderlyingRedemptionDate(v)) } // SetUnderlyingCreditRating sets UnderlyingCreditRating, Tag 256. func (m DerivativeSecurityListRequest) SetUnderlyingCreditRating(v string) { m.Set(field.NewUnderlyingCreditRating(v)) } // SetSubscriptionRequestType sets SubscriptionRequestType, Tag 263. func (m DerivativeSecurityListRequest) SetSubscriptionRequestType(v enum.SubscriptionRequestType) { m.Set(field.NewSubscriptionRequestType(v)) } // SetUnderlyingSecurityIDSource sets UnderlyingSecurityIDSource, Tag 305. func (m DerivativeSecurityListRequest) SetUnderlyingSecurityIDSource(v string) { m.Set(field.NewUnderlyingSecurityIDSource(v)) } // SetUnderlyingIssuer sets UnderlyingIssuer, Tag 306. func (m DerivativeSecurityListRequest) SetUnderlyingIssuer(v string) { m.Set(field.NewUnderlyingIssuer(v)) } // SetUnderlyingSecurityDesc sets UnderlyingSecurityDesc, Tag 307. func (m DerivativeSecurityListRequest) SetUnderlyingSecurityDesc(v string) { m.Set(field.NewUnderlyingSecurityDesc(v)) } // SetUnderlyingSecurityExchange sets UnderlyingSecurityExchange, Tag 308. func (m DerivativeSecurityListRequest) SetUnderlyingSecurityExchange(v string) { m.Set(field.NewUnderlyingSecurityExchange(v)) } // SetUnderlyingSecurityID sets UnderlyingSecurityID, Tag 309. func (m DerivativeSecurityListRequest) SetUnderlyingSecurityID(v string) { m.Set(field.NewUnderlyingSecurityID(v)) } // SetUnderlyingSecurityType sets UnderlyingSecurityType, Tag 310. func (m DerivativeSecurityListRequest) SetUnderlyingSecurityType(v string) { m.Set(field.NewUnderlyingSecurityType(v)) } // SetUnderlyingSymbol sets UnderlyingSymbol, Tag 311. func (m DerivativeSecurityListRequest) SetUnderlyingSymbol(v string) { m.Set(field.NewUnderlyingSymbol(v)) } // SetUnderlyingSymbolSfx sets UnderlyingSymbolSfx, Tag 312. func (m DerivativeSecurityListRequest) SetUnderlyingSymbolSfx(v string) { m.Set(field.NewUnderlyingSymbolSfx(v)) } // SetUnderlyingMaturityMonthYear sets UnderlyingMaturityMonthYear, Tag 313. func (m DerivativeSecurityListRequest) SetUnderlyingMaturityMonthYear(v string) { m.Set(field.NewUnderlyingMaturityMonthYear(v)) } // SetUnderlyingStrikePrice sets UnderlyingStrikePrice, Tag 316. func (m DerivativeSecurityListRequest) SetUnderlyingStrikePrice(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingStrikePrice(value, scale)) } // SetUnderlyingOptAttribute sets UnderlyingOptAttribute, Tag 317. func (m DerivativeSecurityListRequest) SetUnderlyingOptAttribute(v string) { m.Set(field.NewUnderlyingOptAttribute(v)) } // SetUnderlyingCurrency sets UnderlyingCurrency, Tag 318. func (m DerivativeSecurityListRequest) SetUnderlyingCurrency(v string) { m.Set(field.NewUnderlyingCurrency(v)) } // SetSecurityReqID sets SecurityReqID, Tag 320. func (m DerivativeSecurityListRequest) SetSecurityReqID(v string) { m.Set(field.NewSecurityReqID(v)) } // SetTradingSessionID sets TradingSessionID, Tag 336. func (m DerivativeSecurityListRequest) SetTradingSessionID(v enum.TradingSessionID) { m.Set(field.NewTradingSessionID(v)) } // SetEncodedTextLen sets EncodedTextLen, Tag 354. func (m DerivativeSecurityListRequest) SetEncodedTextLen(v int) { m.Set(field.NewEncodedTextLen(v)) } // SetEncodedText sets EncodedText, Tag 355. func (m DerivativeSecurityListRequest) SetEncodedText(v string) { m.Set(field.NewEncodedText(v)) } // SetEncodedUnderlyingIssuerLen sets EncodedUnderlyingIssuerLen, Tag 362. func (m DerivativeSecurityListRequest) SetEncodedUnderlyingIssuerLen(v int) { m.Set(field.NewEncodedUnderlyingIssuerLen(v)) } // SetEncodedUnderlyingIssuer sets EncodedUnderlyingIssuer, Tag 363. func (m DerivativeSecurityListRequest) SetEncodedUnderlyingIssuer(v string) { m.Set(field.NewEncodedUnderlyingIssuer(v)) } // SetEncodedUnderlyingSecurityDescLen sets EncodedUnderlyingSecurityDescLen, Tag 364. func (m DerivativeSecurityListRequest) SetEncodedUnderlyingSecurityDescLen(v int) { m.Set(field.NewEncodedUnderlyingSecurityDescLen(v)) } // SetEncodedUnderlyingSecurityDesc sets EncodedUnderlyingSecurityDesc, Tag 365. func (m DerivativeSecurityListRequest) SetEncodedUnderlyingSecurityDesc(v string) { m.Set(field.NewEncodedUnderlyingSecurityDesc(v)) } // SetUnderlyingCouponRate sets UnderlyingCouponRate, Tag 435. func (m DerivativeSecurityListRequest) SetUnderlyingCouponRate(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingCouponRate(value, scale)) } // SetUnderlyingContractMultiplier sets UnderlyingContractMultiplier, Tag 436. func (m DerivativeSecurityListRequest) SetUnderlyingContractMultiplier(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingContractMultiplier(value, scale)) } // SetNoUnderlyingSecurityAltID sets NoUnderlyingSecurityAltID, Tag 457. func (m DerivativeSecurityListRequest) SetNoUnderlyingSecurityAltID(f NoUnderlyingSecurityAltIDRepeatingGroup) { m.SetGroup(f) } // SetUnderlyingProduct sets UnderlyingProduct, Tag 462. func (m DerivativeSecurityListRequest) SetUnderlyingProduct(v int) { m.Set(field.NewUnderlyingProduct(v)) } // SetUnderlyingCFICode sets UnderlyingCFICode, Tag 463. func (m DerivativeSecurityListRequest) SetUnderlyingCFICode(v string) { m.Set(field.NewUnderlyingCFICode(v)) } // SetUnderlyingMaturityDate sets UnderlyingMaturityDate, Tag 542. func (m DerivativeSecurityListRequest) SetUnderlyingMaturityDate(v string) { m.Set(field.NewUnderlyingMaturityDate(v)) } // SetSecurityListRequestType sets SecurityListRequestType, Tag 559. func (m DerivativeSecurityListRequest) SetSecurityListRequestType(v enum.SecurityListRequestType) { m.Set(field.NewSecurityListRequestType(v)) } // SetUnderlyingCountryOfIssue sets UnderlyingCountryOfIssue, Tag 592. func (m DerivativeSecurityListRequest) SetUnderlyingCountryOfIssue(v string) { m.Set(field.NewUnderlyingCountryOfIssue(v)) } // SetUnderlyingStateOrProvinceOfIssue sets UnderlyingStateOrProvinceOfIssue, Tag 593. func (m DerivativeSecurityListRequest) SetUnderlyingStateOrProvinceOfIssue(v string) { m.Set(field.NewUnderlyingStateOrProvinceOfIssue(v)) } // SetUnderlyingLocaleOfIssue sets UnderlyingLocaleOfIssue, Tag 594. func (m DerivativeSecurityListRequest) SetUnderlyingLocaleOfIssue(v string) { m.Set(field.NewUnderlyingLocaleOfIssue(v)) } // SetUnderlyingInstrRegistry sets UnderlyingInstrRegistry, Tag 595. func (m DerivativeSecurityListRequest) SetUnderlyingInstrRegistry(v string) { m.Set(field.NewUnderlyingInstrRegistry(v)) } // SetTradingSessionSubID sets TradingSessionSubID, Tag 625. func (m DerivativeSecurityListRequest) SetTradingSessionSubID(v enum.TradingSessionSubID) { m.Set(field.NewTradingSessionSubID(v)) } // SetSecuritySubType sets SecuritySubType, Tag 762. func (m DerivativeSecurityListRequest) SetSecuritySubType(v string) { m.Set(field.NewSecuritySubType(v)) } // SetUnderlyingSecuritySubType sets UnderlyingSecuritySubType, Tag 763. func (m DerivativeSecurityListRequest) SetUnderlyingSecuritySubType(v string) { m.Set(field.NewUnderlyingSecuritySubType(v)) } // SetUnderlyingPx sets UnderlyingPx, Tag 810. func (m DerivativeSecurityListRequest) SetUnderlyingPx(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingPx(value, scale)) } // SetUnderlyingCPProgram sets UnderlyingCPProgram, Tag 877. func (m DerivativeSecurityListRequest) SetUnderlyingCPProgram(v string) { m.Set(field.NewUnderlyingCPProgram(v)) } // SetUnderlyingCPRegType sets UnderlyingCPRegType, Tag 878. func (m DerivativeSecurityListRequest) SetUnderlyingCPRegType(v string) { m.Set(field.NewUnderlyingCPRegType(v)) } // SetUnderlyingQty sets UnderlyingQty, Tag 879. func (m DerivativeSecurityListRequest) SetUnderlyingQty(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingQty(value, scale)) } // SetUnderlyingDirtyPrice sets UnderlyingDirtyPrice, Tag 882. func (m DerivativeSecurityListRequest) SetUnderlyingDirtyPrice(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingDirtyPrice(value, scale)) } // SetUnderlyingEndPrice sets UnderlyingEndPrice, Tag 883. func (m DerivativeSecurityListRequest) SetUnderlyingEndPrice(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingEndPrice(value, scale)) } // SetUnderlyingStartValue sets UnderlyingStartValue, Tag 884. func (m DerivativeSecurityListRequest) SetUnderlyingStartValue(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingStartValue(value, scale)) } // SetUnderlyingCurrentValue sets UnderlyingCurrentValue, Tag 885. func (m DerivativeSecurityListRequest) SetUnderlyingCurrentValue(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingCurrentValue(value, scale)) } // SetUnderlyingEndValue sets UnderlyingEndValue, Tag 886. func (m DerivativeSecurityListRequest) SetUnderlyingEndValue(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingEndValue(value, scale)) } // SetNoUnderlyingStips sets NoUnderlyingStips, Tag 887. func (m DerivativeSecurityListRequest) SetNoUnderlyingStips(f NoUnderlyingStipsRepeatingGroup) { m.SetGroup(f) } // SetUnderlyingStrikeCurrency sets UnderlyingStrikeCurrency, Tag 941. func (m DerivativeSecurityListRequest) SetUnderlyingStrikeCurrency(v string) { m.Set(field.NewUnderlyingStrikeCurrency(v)) } // SetUnderlyingAllocationPercent sets UnderlyingAllocationPercent, Tag 972. func (m DerivativeSecurityListRequest) SetUnderlyingAllocationPercent(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingAllocationPercent(value, scale)) } // SetUnderlyingCashAmount sets UnderlyingCashAmount, Tag 973. func (m DerivativeSecurityListRequest) SetUnderlyingCashAmount(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingCashAmount(value, scale)) } // SetUnderlyingCashType sets UnderlyingCashType, Tag 974. func (m DerivativeSecurityListRequest) SetUnderlyingCashType(v enum.UnderlyingCashType) { m.Set(field.NewUnderlyingCashType(v)) } // SetUnderlyingSettlementType sets UnderlyingSettlementType, Tag 975. func (m DerivativeSecurityListRequest) SetUnderlyingSettlementType(v enum.UnderlyingSettlementType) { m.Set(field.NewUnderlyingSettlementType(v)) } // SetUnderlyingUnitOfMeasure sets UnderlyingUnitOfMeasure, Tag 998. func (m DerivativeSecurityListRequest) SetUnderlyingUnitOfMeasure(v string) { m.Set(field.NewUnderlyingUnitOfMeasure(v)) } // SetUnderlyingTimeUnit sets UnderlyingTimeUnit, Tag 1000. func (m DerivativeSecurityListRequest) SetUnderlyingTimeUnit(v string) { m.Set(field.NewUnderlyingTimeUnit(v)) } // SetUnderlyingCapValue sets UnderlyingCapValue, Tag 1038. func (m DerivativeSecurityListRequest) SetUnderlyingCapValue(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingCapValue(value, scale)) } // SetUnderlyingSettlMethod sets UnderlyingSettlMethod, Tag 1039. func (m DerivativeSecurityListRequest) SetUnderlyingSettlMethod(v string) { m.Set(field.NewUnderlyingSettlMethod(v)) } // SetUnderlyingAdjustedQuantity sets UnderlyingAdjustedQuantity, Tag 1044. func (m DerivativeSecurityListRequest) SetUnderlyingAdjustedQuantity(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingAdjustedQuantity(value, scale)) } // SetUnderlyingFXRate sets UnderlyingFXRate, Tag 1045. func (m DerivativeSecurityListRequest) SetUnderlyingFXRate(value decimal.Decimal, scale int32) { m.Set(field.NewUnderlyingFXRate(value, scale)) } // SetUnderlyingFXRateCalc sets UnderlyingFXRateCalc, Tag 1046. func (m DerivativeSecurityListRequest) SetUnderlyingFXRateCalc(v enum.UnderlyingFXRateCalc) { m.Set(field.NewUnderlyingFXRateCalc(v)) } // SetNoUndlyInstrumentParties sets NoUndlyInstrumentParties, Tag 1058. func (m DerivativeSecurityListRequest) SetNoUndlyInstrumentParties(f NoUndlyInstrumentPartiesRepeatingGroup) { m.SetGroup(f) } // GetCurrency gets Currency, Tag 15. func (m DerivativeSecurityListRequest) GetCurrency() (v string, err quickfix.MessageRejectError) { var f field.CurrencyField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetText gets Text, Tag 58. func (m DerivativeSecurityListRequest) GetText() (v string, err quickfix.MessageRejectError) { var f field.TextField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingCouponPaymentDate gets UnderlyingCouponPaymentDate, Tag 241. func (m DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) GetUnderlyingFactor() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnderlyingFactorField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingRedemptionDate gets UnderlyingRedemptionDate, Tag 247. func (m DerivativeSecurityListRequest) GetUnderlyingRedemptionDate() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingRedemptionDateField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingCreditRating gets UnderlyingCreditRating, Tag 256. func (m DerivativeSecurityListRequest) GetUnderlyingCreditRating() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingCreditRatingField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSubscriptionRequestType gets SubscriptionRequestType, Tag 263. func (m DerivativeSecurityListRequest) GetSubscriptionRequestType() (v enum.SubscriptionRequestType, err quickfix.MessageRejectError) { var f field.SubscriptionRequestTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingSecurityIDSource gets UnderlyingSecurityIDSource, Tag 305. func (m DerivativeSecurityListRequest) GetUnderlyingSecurityIDSource() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingSecurityIDSourceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingIssuer gets UnderlyingIssuer, Tag 306. func (m DerivativeSecurityListRequest) GetUnderlyingIssuer() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingIssuerField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingSecurityDesc gets UnderlyingSecurityDesc, Tag 307. func (m DerivativeSecurityListRequest) GetUnderlyingSecurityDesc() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingSecurityDescField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingSecurityExchange gets UnderlyingSecurityExchange, Tag 308. func (m DerivativeSecurityListRequest) GetUnderlyingSecurityExchange() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingSecurityExchangeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingSecurityID gets UnderlyingSecurityID, Tag 309. func (m DerivativeSecurityListRequest) GetUnderlyingSecurityID() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingSecurityIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingSecurityType gets UnderlyingSecurityType, Tag 310. func (m DerivativeSecurityListRequest) GetUnderlyingSecurityType() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingSecurityTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingSymbol gets UnderlyingSymbol, Tag 311. func (m DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) GetUnderlyingSymbolSfx() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingSymbolSfxField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingMaturityMonthYear gets UnderlyingMaturityMonthYear, Tag 313. func (m DerivativeSecurityListRequest) GetUnderlyingMaturityMonthYear() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingMaturityMonthYearField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingStrikePrice gets UnderlyingStrikePrice, Tag 316. func (m DerivativeSecurityListRequest) GetUnderlyingStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnderlyingStrikePriceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingOptAttribute gets UnderlyingOptAttribute, Tag 317. func (m DerivativeSecurityListRequest) GetUnderlyingOptAttribute() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingOptAttributeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingCurrency gets UnderlyingCurrency, Tag 318. func (m DerivativeSecurityListRequest) GetUnderlyingCurrency() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingCurrencyField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityReqID gets SecurityReqID, Tag 320. func (m DerivativeSecurityListRequest) GetSecurityReqID() (v string, err quickfix.MessageRejectError) { var f field.SecurityReqIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetTradingSessionID gets TradingSessionID, Tag 336. func (m DerivativeSecurityListRequest) GetTradingSessionID() (v enum.TradingSessionID, err quickfix.MessageRejectError) { var f field.TradingSessionIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetEncodedTextLen gets EncodedTextLen, Tag 354. func (m DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) GetEncodedText() (v string, err quickfix.MessageRejectError) { var f field.EncodedTextField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetEncodedUnderlyingIssuerLen gets EncodedUnderlyingIssuerLen, Tag 362. func (m DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) GetEncodedUnderlyingIssuer() (v string, err quickfix.MessageRejectError) { var f field.EncodedUnderlyingIssuerField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetEncodedUnderlyingSecurityDescLen gets EncodedUnderlyingSecurityDescLen, Tag 364. func (m DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) GetEncodedUnderlyingSecurityDesc() (v string, err quickfix.MessageRejectError) { var f field.EncodedUnderlyingSecurityDescField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingCouponRate gets UnderlyingCouponRate, Tag 435. func (m DerivativeSecurityListRequest) GetUnderlyingCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnderlyingCouponRateField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingContractMultiplier gets UnderlyingContractMultiplier, Tag 436. func (m DerivativeSecurityListRequest) GetUnderlyingContractMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnderlyingContractMultiplierField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoUnderlyingSecurityAltID gets NoUnderlyingSecurityAltID, Tag 457. func (m DerivativeSecurityListRequest) GetNoUnderlyingSecurityAltID() (NoUnderlyingSecurityAltIDRepeatingGroup, quickfix.MessageRejectError) { f := NewNoUnderlyingSecurityAltIDRepeatingGroup() err := m.GetGroup(f) return f, err } // GetUnderlyingProduct gets UnderlyingProduct, Tag 462. func (m DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) GetUnderlyingCFICode() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingCFICodeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingMaturityDate gets UnderlyingMaturityDate, Tag 542. func (m DerivativeSecurityListRequest) GetUnderlyingMaturityDate() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingMaturityDateField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityListRequestType gets SecurityListRequestType, Tag 559. func (m DerivativeSecurityListRequest) GetSecurityListRequestType() (v enum.SecurityListRequestType, err quickfix.MessageRejectError) { var f field.SecurityListRequestTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingCountryOfIssue gets UnderlyingCountryOfIssue, Tag 592. func (m DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) GetUnderlyingLocaleOfIssue() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingLocaleOfIssueField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingInstrRegistry gets UnderlyingInstrRegistry, Tag 595. func (m DerivativeSecurityListRequest) GetUnderlyingInstrRegistry() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingInstrRegistryField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetTradingSessionSubID gets TradingSessionSubID, Tag 625. func (m DerivativeSecurityListRequest) GetTradingSessionSubID() (v enum.TradingSessionSubID, err quickfix.MessageRejectError) { var f field.TradingSessionSubIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecuritySubType gets SecuritySubType, Tag 762. func (m DerivativeSecurityListRequest) GetSecuritySubType() (v string, err quickfix.MessageRejectError) { var f field.SecuritySubTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingSecuritySubType gets UnderlyingSecuritySubType, Tag 763. func (m DerivativeSecurityListRequest) GetUnderlyingSecuritySubType() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingSecuritySubTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingPx gets UnderlyingPx, Tag 810. func (m DerivativeSecurityListRequest) GetUnderlyingPx() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnderlyingPxField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingCPProgram gets UnderlyingCPProgram, Tag 877. func (m DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) GetUnderlyingCPRegType() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingCPRegTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingQty gets UnderlyingQty, Tag 879. func (m DerivativeSecurityListRequest) GetUnderlyingQty() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnderlyingQtyField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingDirtyPrice gets UnderlyingDirtyPrice, Tag 882. func (m DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) 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 DerivativeSecurityListRequest) GetNoUnderlyingStips() (NoUnderlyingStipsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoUnderlyingStipsRepeatingGroup() err := m.GetGroup(f) return f, err } // GetUnderlyingStrikeCurrency gets UnderlyingStrikeCurrency, Tag 941. func (m DerivativeSecurityListRequest) GetUnderlyingStrikeCurrency() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingStrikeCurrencyField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingAllocationPercent gets UnderlyingAllocationPercent, Tag 972. func (m DerivativeSecurityListRequest) GetUnderlyingAllocationPercent() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnderlyingAllocationPercentField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingCashAmount gets UnderlyingCashAmount, Tag 973. func (m DerivativeSecurityListRequest) GetUnderlyingCashAmount() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnderlyingCashAmountField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingCashType gets UnderlyingCashType, Tag 974. func (m DerivativeSecurityListRequest) GetUnderlyingCashType() (v enum.UnderlyingCashType, err quickfix.MessageRejectError) { var f field.UnderlyingCashTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingSettlementType gets UnderlyingSettlementType, Tag 975. func (m DerivativeSecurityListRequest) GetUnderlyingSettlementType() (v enum.UnderlyingSettlementType, err quickfix.MessageRejectError) { var f field.UnderlyingSettlementTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingUnitOfMeasure gets UnderlyingUnitOfMeasure, Tag 998. func (m DerivativeSecurityListRequest) GetUnderlyingUnitOfMeasure() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingUnitOfMeasureField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingTimeUnit gets UnderlyingTimeUnit, Tag 1000. func (m DerivativeSecurityListRequest) GetUnderlyingTimeUnit() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingTimeUnitField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingCapValue gets UnderlyingCapValue, Tag 1038. func (m DerivativeSecurityListRequest) GetUnderlyingCapValue() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnderlyingCapValueField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingSettlMethod gets UnderlyingSettlMethod, Tag 1039. func (m DerivativeSecurityListRequest) GetUnderlyingSettlMethod() (v string, err quickfix.MessageRejectError) { var f field.UnderlyingSettlMethodField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingAdjustedQuantity gets UnderlyingAdjustedQuantity, Tag 1044. func (m DerivativeSecurityListRequest) GetUnderlyingAdjustedQuantity() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnderlyingAdjustedQuantityField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingFXRate gets UnderlyingFXRate, Tag 1045. func (m DerivativeSecurityListRequest) GetUnderlyingFXRate() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.UnderlyingFXRateField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUnderlyingFXRateCalc gets UnderlyingFXRateCalc, Tag 1046. func (m DerivativeSecurityListRequest) GetUnderlyingFXRateCalc() (v enum.UnderlyingFXRateCalc, err quickfix.MessageRejectError) { var f field.UnderlyingFXRateCalcField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoUndlyInstrumentParties gets NoUndlyInstrumentParties, Tag 1058. func (m DerivativeSecurityListRequest) GetNoUndlyInstrumentParties() (NoUndlyInstrumentPartiesRepeatingGroup, quickfix.MessageRejectError) { f := NewNoUndlyInstrumentPartiesRepeatingGroup() err := m.GetGroup(f) return f, err } // HasCurrency returns true if Currency is present, Tag 15. func (m DerivativeSecurityListRequest) HasCurrency() bool { return m.Has(tag.Currency) } // HasText returns true if Text is present, Tag 58. func (m DerivativeSecurityListRequest) HasText() bool { return m.Has(tag.Text) } // HasUnderlyingCouponPaymentDate returns true if UnderlyingCouponPaymentDate is present, Tag 241. func (m DerivativeSecurityListRequest) HasUnderlyingCouponPaymentDate() bool { return m.Has(tag.UnderlyingCouponPaymentDate) } // HasUnderlyingIssueDate returns true if UnderlyingIssueDate is present, Tag 242. func (m DerivativeSecurityListRequest) HasUnderlyingIssueDate() bool { return m.Has(tag.UnderlyingIssueDate) } // HasUnderlyingRepoCollateralSecurityType returns true if UnderlyingRepoCollateralSecurityType is present, Tag 243. func (m DerivativeSecurityListRequest) HasUnderlyingRepoCollateralSecurityType() bool { return m.Has(tag.UnderlyingRepoCollateralSecurityType) } // HasUnderlyingRepurchaseTerm returns true if UnderlyingRepurchaseTerm is present, Tag 244. func (m DerivativeSecurityListRequest) HasUnderlyingRepurchaseTerm() bool { return m.Has(tag.UnderlyingRepurchaseTerm) } // HasUnderlyingRepurchaseRate returns true if UnderlyingRepurchaseRate is present, Tag 245. func (m DerivativeSecurityListRequest) HasUnderlyingRepurchaseRate() bool { return m.Has(tag.UnderlyingRepurchaseRate) } // HasUnderlyingFactor returns true if UnderlyingFactor is present, Tag 246. func (m DerivativeSecurityListRequest) HasUnderlyingFactor() bool { return m.Has(tag.UnderlyingFactor) } // HasUnderlyingRedemptionDate returns true if UnderlyingRedemptionDate is present, Tag 247. func (m DerivativeSecurityListRequest) HasUnderlyingRedemptionDate() bool { return m.Has(tag.UnderlyingRedemptionDate) } // HasUnderlyingCreditRating returns true if UnderlyingCreditRating is present, Tag 256. func (m DerivativeSecurityListRequest) HasUnderlyingCreditRating() bool { return m.Has(tag.UnderlyingCreditRating) } // HasSubscriptionRequestType returns true if SubscriptionRequestType is present, Tag 263. func (m DerivativeSecurityListRequest) HasSubscriptionRequestType() bool { return m.Has(tag.SubscriptionRequestType) } // HasUnderlyingSecurityIDSource returns true if UnderlyingSecurityIDSource is present, Tag 305. func (m DerivativeSecurityListRequest) HasUnderlyingSecurityIDSource() bool { return m.Has(tag.UnderlyingSecurityIDSource) } // HasUnderlyingIssuer returns true if UnderlyingIssuer is present, Tag 306. func (m DerivativeSecurityListRequest) HasUnderlyingIssuer() bool { return m.Has(tag.UnderlyingIssuer) } // HasUnderlyingSecurityDesc returns true if UnderlyingSecurityDesc is present, Tag 307. func (m DerivativeSecurityListRequest) HasUnderlyingSecurityDesc() bool { return m.Has(tag.UnderlyingSecurityDesc) } // HasUnderlyingSecurityExchange returns true if UnderlyingSecurityExchange is present, Tag 308. func (m DerivativeSecurityListRequest) HasUnderlyingSecurityExchange() bool { return m.Has(tag.UnderlyingSecurityExchange) } // HasUnderlyingSecurityID returns true if UnderlyingSecurityID is present, Tag 309. func (m DerivativeSecurityListRequest) HasUnderlyingSecurityID() bool { return m.Has(tag.UnderlyingSecurityID) } // HasUnderlyingSecurityType returns true if UnderlyingSecurityType is present, Tag 310. func (m DerivativeSecurityListRequest) HasUnderlyingSecurityType() bool { return m.Has(tag.UnderlyingSecurityType) } // HasUnderlyingSymbol returns true if UnderlyingSymbol is present, Tag 311. func (m DerivativeSecurityListRequest) HasUnderlyingSymbol() bool { return m.Has(tag.UnderlyingSymbol) } // HasUnderlyingSymbolSfx returns true if UnderlyingSymbolSfx is present, Tag 312. func (m DerivativeSecurityListRequest) HasUnderlyingSymbolSfx() bool { return m.Has(tag.UnderlyingSymbolSfx) } // HasUnderlyingMaturityMonthYear returns true if UnderlyingMaturityMonthYear is present, Tag 313. func (m DerivativeSecurityListRequest) HasUnderlyingMaturityMonthYear() bool { return m.Has(tag.UnderlyingMaturityMonthYear) } // HasUnderlyingStrikePrice returns true if UnderlyingStrikePrice is present, Tag 316. func (m DerivativeSecurityListRequest) HasUnderlyingStrikePrice() bool { return m.Has(tag.UnderlyingStrikePrice) } // HasUnderlyingOptAttribute returns true if UnderlyingOptAttribute is present, Tag 317. func (m DerivativeSecurityListRequest) HasUnderlyingOptAttribute() bool { return m.Has(tag.UnderlyingOptAttribute) } // HasUnderlyingCurrency returns true if UnderlyingCurrency is present, Tag 318. func (m DerivativeSecurityListRequest) HasUnderlyingCurrency() bool { return m.Has(tag.UnderlyingCurrency) } // HasSecurityReqID returns true if SecurityReqID is present, Tag 320. func (m DerivativeSecurityListRequest) HasSecurityReqID() bool { return m.Has(tag.SecurityReqID) } // HasTradingSessionID returns true if TradingSessionID is present, Tag 336. func (m DerivativeSecurityListRequest) HasTradingSessionID() bool { return m.Has(tag.TradingSessionID) } // HasEncodedTextLen returns true if EncodedTextLen is present, Tag 354. func (m DerivativeSecurityListRequest) HasEncodedTextLen() bool { return m.Has(tag.EncodedTextLen) } // HasEncodedText returns true if EncodedText is present, Tag 355. func (m DerivativeSecurityListRequest) HasEncodedText() bool { return m.Has(tag.EncodedText) } // HasEncodedUnderlyingIssuerLen returns true if EncodedUnderlyingIssuerLen is present, Tag 362. func (m DerivativeSecurityListRequest) HasEncodedUnderlyingIssuerLen() bool { return m.Has(tag.EncodedUnderlyingIssuerLen) } // HasEncodedUnderlyingIssuer returns true if EncodedUnderlyingIssuer is present, Tag 363. func (m DerivativeSecurityListRequest) HasEncodedUnderlyingIssuer() bool { return m.Has(tag.EncodedUnderlyingIssuer) } // HasEncodedUnderlyingSecurityDescLen returns true if EncodedUnderlyingSecurityDescLen is present, Tag 364. func (m DerivativeSecurityListRequest) HasEncodedUnderlyingSecurityDescLen() bool { return m.Has(tag.EncodedUnderlyingSecurityDescLen) } // HasEncodedUnderlyingSecurityDesc returns true if EncodedUnderlyingSecurityDesc is present, Tag 365. func (m DerivativeSecurityListRequest) HasEncodedUnderlyingSecurityDesc() bool { return m.Has(tag.EncodedUnderlyingSecurityDesc) } // HasUnderlyingCouponRate returns true if UnderlyingCouponRate is present, Tag 435. func (m DerivativeSecurityListRequest) HasUnderlyingCouponRate() bool { return m.Has(tag.UnderlyingCouponRate) } // HasUnderlyingContractMultiplier returns true if UnderlyingContractMultiplier is present, Tag 436. func (m DerivativeSecurityListRequest) HasUnderlyingContractMultiplier() bool { return m.Has(tag.UnderlyingContractMultiplier) } // HasNoUnderlyingSecurityAltID returns true if NoUnderlyingSecurityAltID is present, Tag 457. func (m DerivativeSecurityListRequest) HasNoUnderlyingSecurityAltID() bool { return m.Has(tag.NoUnderlyingSecurityAltID) } // HasUnderlyingProduct returns true if UnderlyingProduct is present, Tag 462. func (m DerivativeSecurityListRequest) HasUnderlyingProduct() bool { return m.Has(tag.UnderlyingProduct) } // HasUnderlyingCFICode returns true if UnderlyingCFICode is present, Tag 463. func (m DerivativeSecurityListRequest) HasUnderlyingCFICode() bool { return m.Has(tag.UnderlyingCFICode) } // HasUnderlyingMaturityDate returns true if UnderlyingMaturityDate is present, Tag 542. func (m DerivativeSecurityListRequest) HasUnderlyingMaturityDate() bool { return m.Has(tag.UnderlyingMaturityDate) } // HasSecurityListRequestType returns true if SecurityListRequestType is present, Tag 559. func (m DerivativeSecurityListRequest) HasSecurityListRequestType() bool { return m.Has(tag.SecurityListRequestType) } // HasUnderlyingCountryOfIssue returns true if UnderlyingCountryOfIssue is present, Tag 592. func (m DerivativeSecurityListRequest) HasUnderlyingCountryOfIssue() bool { return m.Has(tag.UnderlyingCountryOfIssue) } // HasUnderlyingStateOrProvinceOfIssue returns true if UnderlyingStateOrProvinceOfIssue is present, Tag 593. func (m DerivativeSecurityListRequest) HasUnderlyingStateOrProvinceOfIssue() bool { return m.Has(tag.UnderlyingStateOrProvinceOfIssue) } // HasUnderlyingLocaleOfIssue returns true if UnderlyingLocaleOfIssue is present, Tag 594. func (m DerivativeSecurityListRequest) HasUnderlyingLocaleOfIssue() bool { return m.Has(tag.UnderlyingLocaleOfIssue) } // HasUnderlyingInstrRegistry returns true if UnderlyingInstrRegistry is present, Tag 595. func (m DerivativeSecurityListRequest) HasUnderlyingInstrRegistry() bool { return m.Has(tag.UnderlyingInstrRegistry) } // HasTradingSessionSubID returns true if TradingSessionSubID is present, Tag 625. func (m DerivativeSecurityListRequest) HasTradingSessionSubID() bool { return m.Has(tag.TradingSessionSubID) } // HasSecuritySubType returns true if SecuritySubType is present, Tag 762. func (m DerivativeSecurityListRequest) HasSecuritySubType() bool { return m.Has(tag.SecuritySubType) } // HasUnderlyingSecuritySubType returns true if UnderlyingSecuritySubType is present, Tag 763. func (m DerivativeSecurityListRequest) HasUnderlyingSecuritySubType() bool { return m.Has(tag.UnderlyingSecuritySubType) } // HasUnderlyingPx returns true if UnderlyingPx is present, Tag 810. func (m DerivativeSecurityListRequest) HasUnderlyingPx() bool { return m.Has(tag.UnderlyingPx) } // HasUnderlyingCPProgram returns true if UnderlyingCPProgram is present, Tag 877. func (m DerivativeSecurityListRequest) HasUnderlyingCPProgram() bool { return m.Has(tag.UnderlyingCPProgram) } // HasUnderlyingCPRegType returns true if UnderlyingCPRegType is present, Tag 878. func (m DerivativeSecurityListRequest) HasUnderlyingCPRegType() bool { return m.Has(tag.UnderlyingCPRegType) } // HasUnderlyingQty returns true if UnderlyingQty is present, Tag 879. func (m DerivativeSecurityListRequest) HasUnderlyingQty() bool { return m.Has(tag.UnderlyingQty) } // HasUnderlyingDirtyPrice returns true if UnderlyingDirtyPrice is present, Tag 882. func (m DerivativeSecurityListRequest) HasUnderlyingDirtyPrice() bool { return m.Has(tag.UnderlyingDirtyPrice) } // HasUnderlyingEndPrice returns true if UnderlyingEndPrice is present, Tag 883. func (m DerivativeSecurityListRequest) HasUnderlyingEndPrice() bool { return m.Has(tag.UnderlyingEndPrice) } // HasUnderlyingStartValue returns true if UnderlyingStartValue is present, Tag 884. func (m DerivativeSecurityListRequest) HasUnderlyingStartValue() bool { return m.Has(tag.UnderlyingStartValue) } // HasUnderlyingCurrentValue returns true if UnderlyingCurrentValue is present, Tag 885. func (m DerivativeSecurityListRequest) HasUnderlyingCurrentValue() bool { return m.Has(tag.UnderlyingCurrentValue) } // HasUnderlyingEndValue returns true if UnderlyingEndValue is present, Tag 886. func (m DerivativeSecurityListRequest) HasUnderlyingEndValue() bool { return m.Has(tag.UnderlyingEndValue) } // HasNoUnderlyingStips returns true if NoUnderlyingStips is present, Tag 887. func (m DerivativeSecurityListRequest) HasNoUnderlyingStips() bool { return m.Has(tag.NoUnderlyingStips) } // HasUnderlyingStrikeCurrency returns true if UnderlyingStrikeCurrency is present, Tag 941. func (m DerivativeSecurityListRequest) HasUnderlyingStrikeCurrency() bool { return m.Has(tag.UnderlyingStrikeCurrency) } // HasUnderlyingAllocationPercent returns true if UnderlyingAllocationPercent is present, Tag 972. func (m DerivativeSecurityListRequest) HasUnderlyingAllocationPercent() bool { return m.Has(tag.UnderlyingAllocationPercent) } // HasUnderlyingCashAmount returns true if UnderlyingCashAmount is present, Tag 973. func (m DerivativeSecurityListRequest) HasUnderlyingCashAmount() bool { return m.Has(tag.UnderlyingCashAmount) } // HasUnderlyingCashType returns true if UnderlyingCashType is present, Tag 974. func (m DerivativeSecurityListRequest) HasUnderlyingCashType() bool { return m.Has(tag.UnderlyingCashType) } // HasUnderlyingSettlementType returns true if UnderlyingSettlementType is present, Tag 975. func (m DerivativeSecurityListRequest) HasUnderlyingSettlementType() bool { return m.Has(tag.UnderlyingSettlementType) } // HasUnderlyingUnitOfMeasure returns true if UnderlyingUnitOfMeasure is present, Tag 998. func (m DerivativeSecurityListRequest) HasUnderlyingUnitOfMeasure() bool { return m.Has(tag.UnderlyingUnitOfMeasure) } // HasUnderlyingTimeUnit returns true if UnderlyingTimeUnit is present, Tag 1000. func (m DerivativeSecurityListRequest) HasUnderlyingTimeUnit() bool { return m.Has(tag.UnderlyingTimeUnit) } // HasUnderlyingCapValue returns true if UnderlyingCapValue is present, Tag 1038. func (m DerivativeSecurityListRequest) HasUnderlyingCapValue() bool { return m.Has(tag.UnderlyingCapValue) } // HasUnderlyingSettlMethod returns true if UnderlyingSettlMethod is present, Tag 1039. func (m DerivativeSecurityListRequest) HasUnderlyingSettlMethod() bool { return m.Has(tag.UnderlyingSettlMethod) } // HasUnderlyingAdjustedQuantity returns true if UnderlyingAdjustedQuantity is present, Tag 1044. func (m DerivativeSecurityListRequest) HasUnderlyingAdjustedQuantity() bool { return m.Has(tag.UnderlyingAdjustedQuantity) } // HasUnderlyingFXRate returns true if UnderlyingFXRate is present, Tag 1045. func (m DerivativeSecurityListRequest) HasUnderlyingFXRate() bool { return m.Has(tag.UnderlyingFXRate) } // HasUnderlyingFXRateCalc returns true if UnderlyingFXRateCalc is present, Tag 1046. func (m DerivativeSecurityListRequest) HasUnderlyingFXRateCalc() bool { return m.Has(tag.UnderlyingFXRateCalc) } // HasNoUndlyInstrumentParties returns true if NoUndlyInstrumentParties is present, Tag 1058. func (m DerivativeSecurityListRequest) HasNoUndlyInstrumentParties() bool { return m.Has(tag.NoUndlyInstrumentParties) } // 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)} } // NoUndlyInstrumentParties is a repeating group element, Tag 1058. type NoUndlyInstrumentParties struct { *quickfix.Group } // SetUndlyInstrumentPartyID sets UndlyInstrumentPartyID, Tag 1059. func (m NoUndlyInstrumentParties) SetUndlyInstrumentPartyID(v string) { m.Set(field.NewUndlyInstrumentPartyID(v)) } // SetUndlyInstrumentPartyIDSource sets UndlyInstrumentPartyIDSource, Tag 1060. func (m NoUndlyInstrumentParties) SetUndlyInstrumentPartyIDSource(v string) { m.Set(field.NewUndlyInstrumentPartyIDSource(v)) } // SetUndlyInstrumentPartyRole sets UndlyInstrumentPartyRole, Tag 1061. func (m NoUndlyInstrumentParties) SetUndlyInstrumentPartyRole(v int) { m.Set(field.NewUndlyInstrumentPartyRole(v)) } // SetNoUndlyInstrumentPartySubIDs sets NoUndlyInstrumentPartySubIDs, Tag 1062. func (m NoUndlyInstrumentParties) SetNoUndlyInstrumentPartySubIDs(f NoUndlyInstrumentPartySubIDsRepeatingGroup) { m.SetGroup(f) } // GetUndlyInstrumentPartyID gets UndlyInstrumentPartyID, Tag 1059. func (m NoUndlyInstrumentParties) GetUndlyInstrumentPartyID() (v string, err quickfix.MessageRejectError) { var f field.UndlyInstrumentPartyIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUndlyInstrumentPartyIDSource gets UndlyInstrumentPartyIDSource, Tag 1060. func (m NoUndlyInstrumentParties) GetUndlyInstrumentPartyIDSource() (v string, err quickfix.MessageRejectError) { var f field.UndlyInstrumentPartyIDSourceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUndlyInstrumentPartyRole gets UndlyInstrumentPartyRole, Tag 1061. func (m NoUndlyInstrumentParties) GetUndlyInstrumentPartyRole() (v int, err quickfix.MessageRejectError) { var f field.UndlyInstrumentPartyRoleField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoUndlyInstrumentPartySubIDs gets NoUndlyInstrumentPartySubIDs, Tag 1062. func (m NoUndlyInstrumentParties) GetNoUndlyInstrumentPartySubIDs() (NoUndlyInstrumentPartySubIDsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoUndlyInstrumentPartySubIDsRepeatingGroup() err := m.GetGroup(f) return f, err } // HasUndlyInstrumentPartyID returns true if UndlyInstrumentPartyID is present, Tag 1059. func (m NoUndlyInstrumentParties) HasUndlyInstrumentPartyID() bool { return m.Has(tag.UndlyInstrumentPartyID) } // HasUndlyInstrumentPartyIDSource returns true if UndlyInstrumentPartyIDSource is present, Tag 1060. func (m NoUndlyInstrumentParties) HasUndlyInstrumentPartyIDSource() bool { return m.Has(tag.UndlyInstrumentPartyIDSource) } // HasUndlyInstrumentPartyRole returns true if UndlyInstrumentPartyRole is present, Tag 1061. func (m NoUndlyInstrumentParties) HasUndlyInstrumentPartyRole() bool { return m.Has(tag.UndlyInstrumentPartyRole) } // HasNoUndlyInstrumentPartySubIDs returns true if NoUndlyInstrumentPartySubIDs is present, Tag 1062. func (m NoUndlyInstrumentParties) HasNoUndlyInstrumentPartySubIDs() bool { return m.Has(tag.NoUndlyInstrumentPartySubIDs) } // NoUndlyInstrumentPartySubIDs is a repeating group element, Tag 1062. type NoUndlyInstrumentPartySubIDs struct { *quickfix.Group } // SetUndlyInstrumentPartySubID sets UndlyInstrumentPartySubID, Tag 1063. func (m NoUndlyInstrumentPartySubIDs) SetUndlyInstrumentPartySubID(v string) { m.Set(field.NewUndlyInstrumentPartySubID(v)) } // SetUndlyInstrumentPartySubIDType sets UndlyInstrumentPartySubIDType, Tag 1064. func (m NoUndlyInstrumentPartySubIDs) SetUndlyInstrumentPartySubIDType(v int) { m.Set(field.NewUndlyInstrumentPartySubIDType(v)) } // GetUndlyInstrumentPartySubID gets UndlyInstrumentPartySubID, Tag 1063. func (m NoUndlyInstrumentPartySubIDs) GetUndlyInstrumentPartySubID() (v string, err quickfix.MessageRejectError) { var f field.UndlyInstrumentPartySubIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetUndlyInstrumentPartySubIDType gets UndlyInstrumentPartySubIDType, Tag 1064. func (m NoUndlyInstrumentPartySubIDs) GetUndlyInstrumentPartySubIDType() (v int, err quickfix.MessageRejectError) { var f field.UndlyInstrumentPartySubIDTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasUndlyInstrumentPartySubID returns true if UndlyInstrumentPartySubID is present, Tag 1063. func (m NoUndlyInstrumentPartySubIDs) HasUndlyInstrumentPartySubID() bool { return m.Has(tag.UndlyInstrumentPartySubID) } // HasUndlyInstrumentPartySubIDType returns true if UndlyInstrumentPartySubIDType is present, Tag 1064. func (m NoUndlyInstrumentPartySubIDs) HasUndlyInstrumentPartySubIDType() bool { return m.Has(tag.UndlyInstrumentPartySubIDType) } // NoUndlyInstrumentPartySubIDsRepeatingGroup is a repeating group, Tag 1062. type NoUndlyInstrumentPartySubIDsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoUndlyInstrumentPartySubIDsRepeatingGroup returns an initialized, NoUndlyInstrumentPartySubIDsRepeatingGroup. func NewNoUndlyInstrumentPartySubIDsRepeatingGroup() NoUndlyInstrumentPartySubIDsRepeatingGroup { return NoUndlyInstrumentPartySubIDsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoUndlyInstrumentPartySubIDs, quickfix.GroupTemplate{ quickfix.GroupElement(tag.UndlyInstrumentPartySubID), quickfix.GroupElement(tag.UndlyInstrumentPartySubIDType), }, ), } } // Add create and append a new NoUndlyInstrumentPartySubIDs to this group. func (m NoUndlyInstrumentPartySubIDsRepeatingGroup) Add() NoUndlyInstrumentPartySubIDs { g := m.RepeatingGroup.Add() return NoUndlyInstrumentPartySubIDs{g} } // Get returns the ith NoUndlyInstrumentPartySubIDs in the NoUndlyInstrumentPartySubIDsRepeatinGroup. func (m NoUndlyInstrumentPartySubIDsRepeatingGroup) Get(i int) NoUndlyInstrumentPartySubIDs { return NoUndlyInstrumentPartySubIDs{m.RepeatingGroup.Get(i)} } // NoUndlyInstrumentPartiesRepeatingGroup is a repeating group, Tag 1058. type NoUndlyInstrumentPartiesRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoUndlyInstrumentPartiesRepeatingGroup returns an initialized, NoUndlyInstrumentPartiesRepeatingGroup. func NewNoUndlyInstrumentPartiesRepeatingGroup() NoUndlyInstrumentPartiesRepeatingGroup { return NoUndlyInstrumentPartiesRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoUndlyInstrumentParties, quickfix.GroupTemplate{ quickfix.GroupElement(tag.UndlyInstrumentPartyID), quickfix.GroupElement(tag.UndlyInstrumentPartyIDSource), quickfix.GroupElement(tag.UndlyInstrumentPartyRole), NewNoUndlyInstrumentPartySubIDsRepeatingGroup(), }, ), } } // Add create and append a new NoUndlyInstrumentParties to this group. func (m NoUndlyInstrumentPartiesRepeatingGroup) Add() NoUndlyInstrumentParties { g := m.RepeatingGroup.Add() return NoUndlyInstrumentParties{g} } // Get returns the ith NoUndlyInstrumentParties in the NoUndlyInstrumentPartiesRepeatinGroup. func (m NoUndlyInstrumentPartiesRepeatingGroup) Get(i int) NoUndlyInstrumentParties { return NoUndlyInstrumentParties{m.RepeatingGroup.Get(i)} }