Files
qfixdpl/quickfix/gen/fix50sp2/quoterequest/QuoteRequest.generated.go
2026-03-09 15:35:32 -03:00

9494 lines
281 KiB
Go

// Code generated by quickfix. DO NOT EDIT.
package quoterequest
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"
)
// QuoteRequest is the fix50sp2 QuoteRequest type, MsgType = R.
type QuoteRequest struct {
fixt11.Header
*quickfix.Body
fixt11.Trailer
Message *quickfix.Message
}
// FromMessage creates a QuoteRequest from a quickfix.Message instance.
func FromMessage(m *quickfix.Message) QuoteRequest {
return QuoteRequest{
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 QuoteRequest) ToMessage() *quickfix.Message {
return m.Message
}
// New returns a QuoteRequest initialized with the required fields for QuoteRequest.
func New(quotereqid field.QuoteReqIDField) (m QuoteRequest) {
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("R"))
m.Set(quotereqid)
return
}
// A RouteOut is the callback type that should be implemented for routing Message.
type RouteOut func(msg QuoteRequest, 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 "9", "R", r
}
// SetClOrdID sets ClOrdID, Tag 11.
func (m QuoteRequest) SetClOrdID(v string) {
m.Set(field.NewClOrdID(v))
}
// SetText sets Text, Tag 58.
func (m QuoteRequest) SetText(v string) {
m.Set(field.NewText(v))
}
// SetQuoteReqID sets QuoteReqID, Tag 131.
func (m QuoteRequest) SetQuoteReqID(v string) {
m.Set(field.NewQuoteReqID(v))
}
// SetNoRelatedSym sets NoRelatedSym, Tag 146.
func (m QuoteRequest) SetNoRelatedSym(f NoRelatedSymRepeatingGroup) {
m.SetGroup(f)
}
// SetEncodedTextLen sets EncodedTextLen, Tag 354.
func (m QuoteRequest) SetEncodedTextLen(v int) {
m.Set(field.NewEncodedTextLen(v))
}
// SetEncodedText sets EncodedText, Tag 355.
func (m QuoteRequest) SetEncodedText(v string) {
m.Set(field.NewEncodedText(v))
}
// SetOrderCapacity sets OrderCapacity, Tag 528.
func (m QuoteRequest) SetOrderCapacity(v enum.OrderCapacity) {
m.Set(field.NewOrderCapacity(v))
}
// SetRFQReqID sets RFQReqID, Tag 644.
func (m QuoteRequest) SetRFQReqID(v string) {
m.Set(field.NewRFQReqID(v))
}
// GetClOrdID gets ClOrdID, Tag 11.
func (m QuoteRequest) GetClOrdID() (v string, err quickfix.MessageRejectError) {
var f field.ClOrdIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetText gets Text, Tag 58.
func (m QuoteRequest) GetText() (v string, err quickfix.MessageRejectError) {
var f field.TextField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetQuoteReqID gets QuoteReqID, Tag 131.
func (m QuoteRequest) GetQuoteReqID() (v string, err quickfix.MessageRejectError) {
var f field.QuoteReqIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoRelatedSym gets NoRelatedSym, Tag 146.
func (m QuoteRequest) GetNoRelatedSym() (NoRelatedSymRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoRelatedSymRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetEncodedTextLen gets EncodedTextLen, Tag 354.
func (m QuoteRequest) 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 QuoteRequest) GetEncodedText() (v string, err quickfix.MessageRejectError) {
var f field.EncodedTextField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOrderCapacity gets OrderCapacity, Tag 528.
func (m QuoteRequest) GetOrderCapacity() (v enum.OrderCapacity, err quickfix.MessageRejectError) {
var f field.OrderCapacityField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRFQReqID gets RFQReqID, Tag 644.
func (m QuoteRequest) GetRFQReqID() (v string, err quickfix.MessageRejectError) {
var f field.RFQReqIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasClOrdID returns true if ClOrdID is present, Tag 11.
func (m QuoteRequest) HasClOrdID() bool {
return m.Has(tag.ClOrdID)
}
// HasText returns true if Text is present, Tag 58.
func (m QuoteRequest) HasText() bool {
return m.Has(tag.Text)
}
// HasQuoteReqID returns true if QuoteReqID is present, Tag 131.
func (m QuoteRequest) HasQuoteReqID() bool {
return m.Has(tag.QuoteReqID)
}
// HasNoRelatedSym returns true if NoRelatedSym is present, Tag 146.
func (m QuoteRequest) HasNoRelatedSym() bool {
return m.Has(tag.NoRelatedSym)
}
// HasEncodedTextLen returns true if EncodedTextLen is present, Tag 354.
func (m QuoteRequest) HasEncodedTextLen() bool {
return m.Has(tag.EncodedTextLen)
}
// HasEncodedText returns true if EncodedText is present, Tag 355.
func (m QuoteRequest) HasEncodedText() bool {
return m.Has(tag.EncodedText)
}
// HasOrderCapacity returns true if OrderCapacity is present, Tag 528.
func (m QuoteRequest) HasOrderCapacity() bool {
return m.Has(tag.OrderCapacity)
}
// HasRFQReqID returns true if RFQReqID is present, Tag 644.
func (m QuoteRequest) HasRFQReqID() bool {
return m.Has(tag.RFQReqID)
}
// 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))
}
// 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))
}
// 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))
}
// SetAgreementDesc sets AgreementDesc, Tag 913.
func (m NoRelatedSym) SetAgreementDesc(v string) {
m.Set(field.NewAgreementDesc(v))
}
// SetAgreementID sets AgreementID, Tag 914.
func (m NoRelatedSym) SetAgreementID(v string) {
m.Set(field.NewAgreementID(v))
}
// SetAgreementDate sets AgreementDate, Tag 915.
func (m NoRelatedSym) SetAgreementDate(v string) {
m.Set(field.NewAgreementDate(v))
}
// SetAgreementCurrency sets AgreementCurrency, Tag 918.
func (m NoRelatedSym) SetAgreementCurrency(v string) {
m.Set(field.NewAgreementCurrency(v))
}
// SetTerminationType sets TerminationType, Tag 788.
func (m NoRelatedSym) SetTerminationType(v enum.TerminationType) {
m.Set(field.NewTerminationType(v))
}
// SetStartDate sets StartDate, Tag 916.
func (m NoRelatedSym) SetStartDate(v string) {
m.Set(field.NewStartDate(v))
}
// SetEndDate sets EndDate, Tag 917.
func (m NoRelatedSym) SetEndDate(v string) {
m.Set(field.NewEndDate(v))
}
// SetDeliveryType sets DeliveryType, Tag 919.
func (m NoRelatedSym) SetDeliveryType(v enum.DeliveryType) {
m.Set(field.NewDeliveryType(v))
}
// SetMarginRatio sets MarginRatio, Tag 898.
func (m NoRelatedSym) SetMarginRatio(value decimal.Decimal, scale int32) {
m.Set(field.NewMarginRatio(value, scale))
}
// SetNoUnderlyings sets NoUnderlyings, Tag 711.
func (m NoRelatedSym) SetNoUnderlyings(f NoUnderlyingsRepeatingGroup) {
m.SetGroup(f)
}
// SetPrevClosePx sets PrevClosePx, Tag 140.
func (m NoRelatedSym) SetPrevClosePx(value decimal.Decimal, scale int32) {
m.Set(field.NewPrevClosePx(value, scale))
}
// SetQuoteRequestType sets QuoteRequestType, Tag 303.
func (m NoRelatedSym) SetQuoteRequestType(v enum.QuoteRequestType) {
m.Set(field.NewQuoteRequestType(v))
}
// SetQuoteType sets QuoteType, Tag 537.
func (m NoRelatedSym) SetQuoteType(v enum.QuoteType) {
m.Set(field.NewQuoteType(v))
}
// SetTradingSessionID sets TradingSessionID, Tag 336.
func (m NoRelatedSym) SetTradingSessionID(v enum.TradingSessionID) {
m.Set(field.NewTradingSessionID(v))
}
// SetTradingSessionSubID sets TradingSessionSubID, Tag 625.
func (m NoRelatedSym) SetTradingSessionSubID(v enum.TradingSessionSubID) {
m.Set(field.NewTradingSessionSubID(v))
}
// SetTradeOriginationDate sets TradeOriginationDate, Tag 229.
func (m NoRelatedSym) SetTradeOriginationDate(v string) {
m.Set(field.NewTradeOriginationDate(v))
}
// SetSide sets Side, Tag 54.
func (m NoRelatedSym) SetSide(v enum.Side) {
m.Set(field.NewSide(v))
}
// SetQtyType sets QtyType, Tag 854.
func (m NoRelatedSym) SetQtyType(v enum.QtyType) {
m.Set(field.NewQtyType(v))
}
// SetOrderQty sets OrderQty, Tag 38.
func (m NoRelatedSym) SetOrderQty(value decimal.Decimal, scale int32) {
m.Set(field.NewOrderQty(value, scale))
}
// SetCashOrderQty sets CashOrderQty, Tag 152.
func (m NoRelatedSym) SetCashOrderQty(value decimal.Decimal, scale int32) {
m.Set(field.NewCashOrderQty(value, scale))
}
// SetOrderPercent sets OrderPercent, Tag 516.
func (m NoRelatedSym) SetOrderPercent(value decimal.Decimal, scale int32) {
m.Set(field.NewOrderPercent(value, scale))
}
// SetRoundingDirection sets RoundingDirection, Tag 468.
func (m NoRelatedSym) SetRoundingDirection(v enum.RoundingDirection) {
m.Set(field.NewRoundingDirection(v))
}
// SetRoundingModulus sets RoundingModulus, Tag 469.
func (m NoRelatedSym) SetRoundingModulus(value decimal.Decimal, scale int32) {
m.Set(field.NewRoundingModulus(value, scale))
}
// SetSettlType sets SettlType, Tag 63.
func (m NoRelatedSym) SetSettlType(v enum.SettlType) {
m.Set(field.NewSettlType(v))
}
// SetSettlDate sets SettlDate, Tag 64.
func (m NoRelatedSym) SetSettlDate(v string) {
m.Set(field.NewSettlDate(v))
}
// SetSettlDate2 sets SettlDate2, Tag 193.
func (m NoRelatedSym) SetSettlDate2(v string) {
m.Set(field.NewSettlDate2(v))
}
// SetAuctionDate sets AuctionDate, Tag 5729.
func (m NoRelatedSym) SetAuctionDate(v string) {
m.Set(field.NewAuctionDate(v))
}
// SetOrderQty2 sets OrderQty2, Tag 192.
func (m NoRelatedSym) SetOrderQty2(value decimal.Decimal, scale int32) {
m.Set(field.NewOrderQty2(value, scale))
}
// SetCurrency sets Currency, Tag 15.
func (m NoRelatedSym) SetCurrency(v string) {
m.Set(field.NewCurrency(v))
}
// SetNoStipulations sets NoStipulations, Tag 232.
func (m NoRelatedSym) SetNoStipulations(f NoStipulationsRepeatingGroup) {
m.SetGroup(f)
}
// SetAccount sets Account, Tag 1.
func (m NoRelatedSym) SetAccount(v string) {
m.Set(field.NewAccount(v))
}
// SetAcctIDSource sets AcctIDSource, Tag 660.
func (m NoRelatedSym) SetAcctIDSource(v enum.AcctIDSource) {
m.Set(field.NewAcctIDSource(v))
}
// SetAccountType sets AccountType, Tag 581.
func (m NoRelatedSym) SetAccountType(v enum.AccountType) {
m.Set(field.NewAccountType(v))
}
// SetTradeInfoSetting sets TradeInfoSetting, Tag 20085.
func (m NoRelatedSym) SetTradeInfoSetting(v string) {
m.Set(field.NewTradeInfoSetting(v))
}
// SetDelayTime sets DelayTime, Tag 20183.
func (m NoRelatedSym) SetDelayTime(v int) {
m.Set(field.NewDelayTime(v))
}
// SetIndustryCode sets IndustryCode, Tag 6110.
func (m NoRelatedSym) SetIndustryCode(v string) {
m.Set(field.NewIndustryCode(v))
}
// SetRestructuring sets Restructuring, Tag 20099.
func (m NoRelatedSym) SetRestructuring(v string) {
m.Set(field.NewRestructuring(v))
}
// SetSeniority sets Seniority, Tag 20100.
func (m NoRelatedSym) SetSeniority(v string) {
m.Set(field.NewSeniority(v))
}
// SetCoopStatus sets CoopStatus, Tag 23670.
func (m NoRelatedSym) SetCoopStatus(v string) {
m.Set(field.NewCoopStatus(v))
}
// SetSalesOBOPrice sets SalesOBOPrice, Tag 23672.
func (m NoRelatedSym) SetSalesOBOPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewSalesOBOPrice(value, scale))
}
// SetTrdType sets TrdType, Tag 828.
func (m NoRelatedSym) SetTrdType(v enum.TrdType) {
m.Set(field.NewTrdType(v))
}
// SetDealerVoiceFlag sets DealerVoiceFlag, Tag 23673.
func (m NoRelatedSym) SetDealerVoiceFlag(v bool) {
m.Set(field.NewDealerVoiceFlag(v))
}
// SetNoLegs sets NoLegs, Tag 555.
func (m NoRelatedSym) SetNoLegs(f NoLegsRepeatingGroup) {
m.SetGroup(f)
}
// SetNoQuoteQualifiers sets NoQuoteQualifiers, Tag 735.
func (m NoRelatedSym) SetNoQuoteQualifiers(f NoQuoteQualifiersRepeatingGroup) {
m.SetGroup(f)
}
// SetQuotePriceType sets QuotePriceType, Tag 692.
func (m NoRelatedSym) SetQuotePriceType(v enum.QuotePriceType) {
m.Set(field.NewQuotePriceType(v))
}
// SetOrdType sets OrdType, Tag 40.
func (m NoRelatedSym) SetOrdType(v enum.OrdType) {
m.Set(field.NewOrdType(v))
}
// SetValidUntilTime sets ValidUntilTime, Tag 62.
func (m NoRelatedSym) SetValidUntilTime(v time.Time) {
m.Set(field.NewValidUntilTime(v))
}
// SetExpireTime sets ExpireTime, Tag 126.
func (m NoRelatedSym) SetExpireTime(v time.Time) {
m.Set(field.NewExpireTime(v))
}
// SetTransactTime sets TransactTime, Tag 60.
func (m NoRelatedSym) SetTransactTime(v time.Time) {
m.Set(field.NewTransactTime(v))
}
// SetSpread sets Spread, Tag 218.
func (m NoRelatedSym) SetSpread(value decimal.Decimal, scale int32) {
m.Set(field.NewSpread(value, scale))
}
// SetBenchmarkCurveCurrency sets BenchmarkCurveCurrency, Tag 220.
func (m NoRelatedSym) SetBenchmarkCurveCurrency(v string) {
m.Set(field.NewBenchmarkCurveCurrency(v))
}
// SetBenchmarkCurveName sets BenchmarkCurveName, Tag 221.
func (m NoRelatedSym) SetBenchmarkCurveName(v enum.BenchmarkCurveName) {
m.Set(field.NewBenchmarkCurveName(v))
}
// SetBenchmarkCurvePoint sets BenchmarkCurvePoint, Tag 222.
func (m NoRelatedSym) SetBenchmarkCurvePoint(v string) {
m.Set(field.NewBenchmarkCurvePoint(v))
}
// SetBenchmarkPrice sets BenchmarkPrice, Tag 662.
func (m NoRelatedSym) SetBenchmarkPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewBenchmarkPrice(value, scale))
}
// SetBenchmarkYield sets BenchmarkYield, Tag 22570.
func (m NoRelatedSym) SetBenchmarkYield(value decimal.Decimal, scale int32) {
m.Set(field.NewBenchmarkYield(value, scale))
}
// SetBenchmarkPriceType sets BenchmarkPriceType, Tag 663.
func (m NoRelatedSym) SetBenchmarkPriceType(v int) {
m.Set(field.NewBenchmarkPriceType(v))
}
// SetBenchmarkSecurityID sets BenchmarkSecurityID, Tag 699.
func (m NoRelatedSym) SetBenchmarkSecurityID(v string) {
m.Set(field.NewBenchmarkSecurityID(v))
}
// SetBenchmarkSecurityIDSource sets BenchmarkSecurityIDSource, Tag 761.
func (m NoRelatedSym) SetBenchmarkSecurityIDSource(v string) {
m.Set(field.NewBenchmarkSecurityIDSource(v))
}
// SetPriceType sets PriceType, Tag 423.
func (m NoRelatedSym) SetPriceType(v enum.PriceType) {
m.Set(field.NewPriceType(v))
}
// SetPrice sets Price, Tag 44.
func (m NoRelatedSym) SetPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewPrice(value, scale))
}
// SetPrice2 sets Price2, Tag 640.
func (m NoRelatedSym) SetPrice2(value decimal.Decimal, scale int32) {
m.Set(field.NewPrice2(value, scale))
}
// SetYieldType sets YieldType, Tag 235.
func (m NoRelatedSym) SetYieldType(v enum.YieldType) {
m.Set(field.NewYieldType(v))
}
// SetYield sets Yield, Tag 236.
func (m NoRelatedSym) SetYield(value decimal.Decimal, scale int32) {
m.Set(field.NewYield(value, scale))
}
// SetYieldCalcDate sets YieldCalcDate, Tag 701.
func (m NoRelatedSym) SetYieldCalcDate(v string) {
m.Set(field.NewYieldCalcDate(v))
}
// SetYieldRedemptionDate sets YieldRedemptionDate, Tag 696.
func (m NoRelatedSym) SetYieldRedemptionDate(v string) {
m.Set(field.NewYieldRedemptionDate(v))
}
// SetYieldRedemptionPrice sets YieldRedemptionPrice, Tag 697.
func (m NoRelatedSym) SetYieldRedemptionPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewYieldRedemptionPrice(value, scale))
}
// SetYieldRedemptionPriceType sets YieldRedemptionPriceType, Tag 698.
func (m NoRelatedSym) SetYieldRedemptionPriceType(v int) {
m.Set(field.NewYieldRedemptionPriceType(v))
}
// SetNoPartyIDs sets NoPartyIDs, Tag 453.
func (m NoRelatedSym) SetNoPartyIDs(f NoPartyIDsRepeatingGroup) {
m.SetGroup(f)
}
// SetTargetStrategy sets TargetStrategy, Tag 847.
func (m NoRelatedSym) SetTargetStrategy(v enum.TargetStrategy) {
m.Set(field.NewTargetStrategy(v))
}
// SetNotionalAmt sets NotionalAmt, Tag 6917.
func (m NoRelatedSym) SetNotionalAmt(value decimal.Decimal, scale int32) {
m.Set(field.NewNotionalAmt(value, scale))
}
// SetDJSTOXX sets DJSTOXX, Tag 6202.
func (m NoRelatedSym) SetDJSTOXX(v string) {
m.Set(field.NewDJSTOXX(v))
}
// SetMSCI sets MSCI, Tag 6200.
func (m NoRelatedSym) SetMSCI(v string) {
m.Set(field.NewMSCI(v))
}
// SetReferencePrice sets ReferencePrice, Tag 6087.
func (m NoRelatedSym) SetReferencePrice(value decimal.Decimal, scale int32) {
m.Set(field.NewReferencePrice(value, scale))
}
// SetTickSize sets TickSize, Tag 5023.
func (m NoRelatedSym) SetTickSize(value decimal.Decimal, scale int32) {
m.Set(field.NewTickSize(value, scale))
}
// SetMinQty sets MinQty, Tag 110.
func (m NoRelatedSym) SetMinQty(value decimal.Decimal, scale int32) {
m.Set(field.NewMinQty(value, scale))
}
// SetListID sets ListID, Tag 66.
func (m NoRelatedSym) SetListID(v string) {
m.Set(field.NewListID(v))
}
// SetTotalNumOfParts sets TotalNumOfParts, Tag 6847.
func (m NoRelatedSym) SetTotalNumOfParts(v int) {
m.Set(field.NewTotalNumOfParts(v))
}
// SetPartNum sets PartNum, Tag 6849.
func (m NoRelatedSym) SetPartNum(v int) {
m.Set(field.NewPartNum(v))
}
// SetTradeDate sets TradeDate, Tag 75.
func (m NoRelatedSym) SetTradeDate(v string) {
m.Set(field.NewTradeDate(v))
}
// SetTestMessageIndicator sets TestMessageIndicator, Tag 464.
func (m NoRelatedSym) SetTestMessageIndicator(v bool) {
m.Set(field.NewTestMessageIndicator(v))
}
// SetNoOfDealers sets NoOfDealers, Tag 20086.
func (m NoRelatedSym) SetNoOfDealers(v int) {
m.Set(field.NewNoOfDealers(v))
}
// SetNoOfOriginalDealers sets NoOfOriginalDealers, Tag 20280.
func (m NoRelatedSym) SetNoOfOriginalDealers(v int) {
m.Set(field.NewNoOfOriginalDealers(v))
}
// SetNoOfRemovedDealers sets NoOfRemovedDealers, Tag 20287.
func (m NoRelatedSym) SetNoOfRemovedDealers(v int) {
m.Set(field.NewNoOfRemovedDealers(v))
}
// SetCanRespond sets CanRespond, Tag 20074.
func (m NoRelatedSym) SetCanRespond(v bool) {
m.Set(field.NewCanRespond(v))
}
// SetCanQuote sets CanQuote, Tag 20075.
func (m NoRelatedSym) SetCanQuote(v bool) {
m.Set(field.NewCanQuote(v))
}
// SetBookName sets BookName, Tag 20077.
func (m NoRelatedSym) SetBookName(v string) {
m.Set(field.NewBookName(v))
}
// SetTraderList sets TraderList, Tag 20078.
func (m NoRelatedSym) SetTraderList(v string) {
m.Set(field.NewTraderList(v))
}
// SetOwnerTraderID sets OwnerTraderID, Tag 6153.
func (m NoRelatedSym) SetOwnerTraderID(v string) {
m.Set(field.NewOwnerTraderID(v))
}
// SetTimeoutPeriod sets TimeoutPeriod, Tag 20079.
func (m NoRelatedSym) SetTimeoutPeriod(v int) {
m.Set(field.NewTimeoutPeriod(v))
}
// SetNewTimePeriod sets NewTimePeriod, Tag 20080.
func (m NoRelatedSym) SetNewTimePeriod(v int) {
m.Set(field.NewNewTimePeriod(v))
}
// SetQuoteTimePeriod sets QuoteTimePeriod, Tag 20081.
func (m NoRelatedSym) SetQuoteTimePeriod(v int) {
m.Set(field.NewQuoteTimePeriod(v))
}
// SetConfirmTimePeriod sets ConfirmTimePeriod, Tag 20082.
func (m NoRelatedSym) SetConfirmTimePeriod(v int) {
m.Set(field.NewConfirmTimePeriod(v))
}
// SetLifeTimePeriod sets LifeTimePeriod, Tag 20084.
func (m NoRelatedSym) SetLifeTimePeriod(v int) {
m.Set(field.NewLifeTimePeriod(v))
}
// SetDoneTimePeriod sets DoneTimePeriod, Tag 20088.
func (m NoRelatedSym) SetDoneTimePeriod(v int) {
m.Set(field.NewDoneTimePeriod(v))
}
// SetDueinTimePeriod sets DueinTimePeriod, Tag 20090.
func (m NoRelatedSym) SetDueinTimePeriod(v int) {
m.Set(field.NewDueinTimePeriod(v))
}
// SetDuebyTimePeriod sets DuebyTimePeriod, Tag 20421.
func (m NoRelatedSym) SetDuebyTimePeriod(v int) {
m.Set(field.NewDuebyTimePeriod(v))
}
// SetGoodforTimePeriod sets GoodforTimePeriod, Tag 20072.
func (m NoRelatedSym) SetGoodforTimePeriod(v int) {
m.Set(field.NewGoodforTimePeriod(v))
}
// SetSubjectTimePeriod sets SubjectTimePeriod, Tag 20098.
func (m NoRelatedSym) SetSubjectTimePeriod(v int) {
m.Set(field.NewSubjectTimePeriod(v))
}
// SetMultipleTickets sets MultipleTickets, Tag 5745.
func (m NoRelatedSym) SetMultipleTickets(v int) {
m.Set(field.NewMultipleTickets(v))
}
// SetISMN sets ISMN, Tag 5772.
func (m NoRelatedSym) SetISMN(v int) {
m.Set(field.NewISMN(v))
}
// SetEndDateBusDayAdj sets EndDateBusDayAdj, Tag 20038.
func (m NoRelatedSym) SetEndDateBusDayAdj(v string) {
m.Set(field.NewEndDateBusDayAdj(v))
}
// SetOnTheRunValue sets OnTheRunValue, Tag 20052.
func (m NoRelatedSym) SetOnTheRunValue(v int) {
m.Set(field.NewOnTheRunValue(v))
}
// SetReopeningValue sets ReopeningValue, Tag 20054.
func (m NoRelatedSym) SetReopeningValue(v int) {
m.Set(field.NewReopeningValue(v))
}
// SetCMPB sets CMPB, Tag 5756.
func (m NoRelatedSym) SetCMPB(value decimal.Decimal, scale int32) {
m.Set(field.NewCMPB(value, scale))
}
// SetCMPA sets CMPA, Tag 5757.
func (m NoRelatedSym) SetCMPA(value decimal.Decimal, scale int32) {
m.Set(field.NewCMPA(value, scale))
}
// SetCMPSP sets CMPSP, Tag 5759.
func (m NoRelatedSym) SetCMPSP(value decimal.Decimal, scale int32) {
m.Set(field.NewCMPSP(value, scale))
}
// SetCompQuote sets CompQuote, Tag 5730.
func (m NoRelatedSym) SetCompQuote(value decimal.Decimal, scale int32) {
m.Set(field.NewCompQuote(value, scale))
}
// SetBidPx sets BidPx, Tag 132.
func (m NoRelatedSym) SetBidPx(value decimal.Decimal, scale int32) {
m.Set(field.NewBidPx(value, scale))
}
// SetOfferPx sets OfferPx, Tag 133.
func (m NoRelatedSym) SetOfferPx(value decimal.Decimal, scale int32) {
m.Set(field.NewOfferPx(value, scale))
}
// SetPositionEffect sets PositionEffect, Tag 77.
func (m NoRelatedSym) SetPositionEffect(v enum.PositionEffect) {
m.Set(field.NewPositionEffect(v))
}
// SetSwapType sets SwapType, Tag 6668.
func (m NoRelatedSym) SetSwapType(v string) {
m.Set(field.NewSwapType(v))
}
// SetSWSPRD sets SWSPRD, Tag 5767.
func (m NoRelatedSym) SetSWSPRD(value decimal.Decimal, scale int32) {
m.Set(field.NewSWSPRD(value, scale))
}
// SetNegotiationType sets NegotiationType, Tag 20073.
func (m NoRelatedSym) SetNegotiationType(v string) {
m.Set(field.NewNegotiationType(v))
}
// SetCanRequote sets CanRequote, Tag 20076.
func (m NoRelatedSym) SetCanRequote(v bool) {
m.Set(field.NewCanRequote(v))
}
// SetCanCounter sets CanCounter, Tag 20156.
func (m NoRelatedSym) SetCanCounter(v bool) {
m.Set(field.NewCanCounter(v))
}
// SetRequoteTimePeriod sets RequoteTimePeriod, Tag 20083.
func (m NoRelatedSym) SetRequoteTimePeriod(v int) {
m.Set(field.NewRequoteTimePeriod(v))
}
// SetOutstandingAmount sets OutstandingAmount, Tag 20130.
func (m NoRelatedSym) SetOutstandingAmount(value decimal.Decimal, scale int32) {
m.Set(field.NewOutstandingAmount(value, scale))
}
// SetCompositeSize sets CompositeSize, Tag 20132.
func (m NoRelatedSym) SetCompositeSize(value decimal.Decimal, scale int32) {
m.Set(field.NewCompositeSize(value, scale))
}
// SetInventoryAmount sets InventoryAmount, Tag 20134.
func (m NoRelatedSym) SetInventoryAmount(value decimal.Decimal, scale int32) {
m.Set(field.NewInventoryAmount(value, scale))
}
// SetInventorySpread sets InventorySpread, Tag 20136.
func (m NoRelatedSym) SetInventorySpread(value decimal.Decimal, scale int32) {
m.Set(field.NewInventorySpread(value, scale))
}
// SetLeadManagers sets LeadManagers, Tag 20138.
func (m NoRelatedSym) SetLeadManagers(v string) {
m.Set(field.NewLeadManagers(v))
}
// SetRoundLot sets RoundLot, Tag 561.
func (m NoRelatedSym) SetRoundLot(value decimal.Decimal, scale int32) {
m.Set(field.NewRoundLot(value, scale))
}
// SetMinTradeVol sets MinTradeVol, Tag 562.
func (m NoRelatedSym) SetMinTradeVol(value decimal.Decimal, scale int32) {
m.Set(field.NewMinTradeVol(value, scale))
}
// SetNoCreditRating sets NoCreditRating, Tag 5114.
func (m NoRelatedSym) SetNoCreditRating(f NoCreditRatingRepeatingGroup) {
m.SetGroup(f)
}
// SetNoCalcProvided sets NoCalcProvided, Tag 20140.
func (m NoRelatedSym) SetNoCalcProvided(v bool) {
m.Set(field.NewNoCalcProvided(v))
}
// SetBenchmarkSymbolSfx sets BenchmarkSymbolSfx, Tag 6633.
func (m NoRelatedSym) SetBenchmarkSymbolSfx(v string) {
m.Set(field.NewBenchmarkSymbolSfx(v))
}
// SetBenchmarkSymbolAltSfx sets BenchmarkSymbolAltSfx, Tag 20165.
func (m NoRelatedSym) SetBenchmarkSymbolAltSfx(v string) {
m.Set(field.NewBenchmarkSymbolAltSfx(v))
}
// SetTWBenchmarkSymbolSfx sets TWBenchmarkSymbolSfx, Tag 20153.
func (m NoRelatedSym) SetTWBenchmarkSymbolSfx(v string) {
m.Set(field.NewTWBenchmarkSymbolSfx(v))
}
// SetTWBenchmarkSymbolAltSfx sets TWBenchmarkSymbolAltSfx, Tag 20167.
func (m NoRelatedSym) SetTWBenchmarkSymbolAltSfx(v string) {
m.Set(field.NewTWBenchmarkSymbolAltSfx(v))
}
// SetTWBenchmarkSecurityID sets TWBenchmarkSecurityID, Tag 20149.
func (m NoRelatedSym) SetTWBenchmarkSecurityID(v string) {
m.Set(field.NewTWBenchmarkSecurityID(v))
}
// SetTWBenchmarkSecurityIDSource sets TWBenchmarkSecurityIDSource, Tag 20150.
func (m NoRelatedSym) SetTWBenchmarkSecurityIDSource(v string) {
m.Set(field.NewTWBenchmarkSecurityIDSource(v))
}
// SetBenchmarkSecurityAltID sets BenchmarkSecurityAltID, Tag 20157.
func (m NoRelatedSym) SetBenchmarkSecurityAltID(v string) {
m.Set(field.NewBenchmarkSecurityAltID(v))
}
// SetBenchmarkSecurityAltIDSource sets BenchmarkSecurityAltIDSource, Tag 20158.
func (m NoRelatedSym) SetBenchmarkSecurityAltIDSource(v string) {
m.Set(field.NewBenchmarkSecurityAltIDSource(v))
}
// SetTWBenchmarkSecurityAltID sets TWBenchmarkSecurityAltID, Tag 20161.
func (m NoRelatedSym) SetTWBenchmarkSecurityAltID(v string) {
m.Set(field.NewTWBenchmarkSecurityAltID(v))
}
// SetTWBenchmarkSecurityAltIDSource sets TWBenchmarkSecurityAltIDSource, Tag 20162.
func (m NoRelatedSym) SetTWBenchmarkSecurityAltIDSource(v string) {
m.Set(field.NewTWBenchmarkSecurityAltIDSource(v))
}
// SetTWBenchmarkPrice sets TWBenchmarkPrice, Tag 20171.
func (m NoRelatedSym) SetTWBenchmarkPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewTWBenchmarkPrice(value, scale))
}
// SetTWBenchmarkPriceType sets TWBenchmarkPriceType, Tag 20172.
func (m NoRelatedSym) SetTWBenchmarkPriceType(v int) {
m.Set(field.NewTWBenchmarkPriceType(v))
}
// SetDealerBenchmarkPrice sets DealerBenchmarkPrice, Tag 22572.
func (m NoRelatedSym) SetDealerBenchmarkPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewDealerBenchmarkPrice(value, scale))
}
// SetDealerBenchmarkYield sets DealerBenchmarkYield, Tag 22574.
func (m NoRelatedSym) SetDealerBenchmarkYield(value decimal.Decimal, scale int32) {
m.Set(field.NewDealerBenchmarkYield(value, scale))
}
// SetUseDealerBenchmark sets UseDealerBenchmark, Tag 22576.
func (m NoRelatedSym) SetUseDealerBenchmark(v bool) {
m.Set(field.NewUseDealerBenchmark(v))
}
// SetInventoryTier sets InventoryTier, Tag 20145.
func (m NoRelatedSym) SetInventoryTier(v string) {
m.Set(field.NewInventoryTier(v))
}
// SetPricingTier sets PricingTier, Tag 20147.
func (m NoRelatedSym) SetPricingTier(v string) {
m.Set(field.NewPricingTier(v))
}
// SetFirstCouponPaymentDate sets FirstCouponPaymentDate, Tag 20175.
func (m NoRelatedSym) SetFirstCouponPaymentDate(v string) {
m.Set(field.NewFirstCouponPaymentDate(v))
}
// SetNetMoney sets NetMoney, Tag 118.
func (m NoRelatedSym) SetNetMoney(value decimal.Decimal, scale int32) {
m.Set(field.NewNetMoney(value, scale))
}
// SetGrossTradeAmt sets GrossTradeAmt, Tag 381.
func (m NoRelatedSym) SetGrossTradeAmt(value decimal.Decimal, scale int32) {
m.Set(field.NewGrossTradeAmt(value, scale))
}
// SetNextCouponRate sets NextCouponRate, Tag 20179.
func (m NoRelatedSym) SetNextCouponRate(value decimal.Decimal, scale int32) {
m.Set(field.NewNextCouponRate(value, scale))
}
// SetTradeAxeIndicator sets TradeAxeIndicator, Tag 20232.
func (m NoRelatedSym) SetTradeAxeIndicator(v string) {
m.Set(field.NewTradeAxeIndicator(v))
}
// SetExecutionFeeSchedule sets ExecutionFeeSchedule, Tag 20056.
func (m NoRelatedSym) SetExecutionFeeSchedule(v string) {
m.Set(field.NewExecutionFeeSchedule(v))
}
// SetExecutionFeeType sets ExecutionFeeType, Tag 20058.
func (m NoRelatedSym) SetExecutionFeeType(v int) {
m.Set(field.NewExecutionFeeType(v))
}
// SetExecutionFeeMarkup sets ExecutionFeeMarkup, Tag 20060.
func (m NoRelatedSym) SetExecutionFeeMarkup(value decimal.Decimal, scale int32) {
m.Set(field.NewExecutionFeeMarkup(value, scale))
}
// SetExecutionFeeAmount sets ExecutionFeeAmount, Tag 20062.
func (m NoRelatedSym) SetExecutionFeeAmount(value decimal.Decimal, scale int32) {
m.Set(field.NewExecutionFeeAmount(value, scale))
}
// SetNegotiationMethod sets NegotiationMethod, Tag 2115.
func (m NoRelatedSym) SetNegotiationMethod(v int) {
m.Set(field.NewNegotiationMethod(v))
}
// SetNegotiationTime sets NegotiationTime, Tag 22639.
func (m NoRelatedSym) SetNegotiationTime(v string) {
m.Set(field.NewNegotiationTime(v))
}
// SetIntermediated sets Intermediated, Tag 20262.
func (m NoRelatedSym) SetIntermediated(v bool) {
m.Set(field.NewIntermediated(v))
}
// SetCallDate sets CallDate, Tag 20222.
func (m NoRelatedSym) SetCallDate(v string) {
m.Set(field.NewCallDate(v))
}
// SetCallType sets CallType, Tag 20223.
func (m NoRelatedSym) SetCallType(v string) {
m.Set(field.NewCallType(v))
}
// SetCallPrice sets CallPrice, Tag 20266.
func (m NoRelatedSym) SetCallPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewCallPrice(value, scale))
}
// SetFxRate sets FxRate, Tag 22630.
func (m NoRelatedSym) SetFxRate(value decimal.Decimal, scale int32) {
m.Set(field.NewFxRate(value, scale))
}
// SetSettlCurrency sets SettlCurrency, Tag 120.
func (m NoRelatedSym) SetSettlCurrency(v string) {
m.Set(field.NewSettlCurrency(v))
}
// SetMarketSegment sets MarketSegment, Tag 20265.
func (m NoRelatedSym) SetMarketSegment(v string) {
m.Set(field.NewMarketSegment(v))
}
// SetRegulatoryType sets RegulatoryType, Tag 20227.
func (m NoRelatedSym) SetRegulatoryType(v string) {
m.Set(field.NewRegulatoryType(v))
}
// SetRationale sets Rationale, Tag 20306.
func (m NoRelatedSym) SetRationale(v string) {
m.Set(field.NewRationale(v))
}
// SetA2ATrade sets A2ATrade, Tag 22659.
func (m NoRelatedSym) SetA2ATrade(v bool) {
m.Set(field.NewA2ATrade(v))
}
// SetPreTradeAnonymity sets PreTradeAnonymity, Tag 1091.
func (m NoRelatedSym) SetPreTradeAnonymity(v bool) {
m.Set(field.NewPreTradeAnonymity(v))
}
// SetOnMTF sets OnMTF, Tag 23070.
func (m NoRelatedSym) SetOnMTF(v bool) {
m.Set(field.NewOnMTF(v))
}
// SetLiquidity sets Liquidity, Tag 23074.
func (m NoRelatedSym) SetLiquidity(v int) {
m.Set(field.NewLiquidity(v))
}
// SetPreTrans sets PreTrans, Tag 23076.
func (m NoRelatedSym) SetPreTrans(v int) {
m.Set(field.NewPreTrans(v))
}
// SetClientTradingCapacity sets ClientTradingCapacity, Tag 23060.
func (m NoRelatedSym) SetClientTradingCapacity(v string) {
m.Set(field.NewClientTradingCapacity(v))
}
// SetMiFIDMIC sets MiFIDMIC, Tag 23068.
func (m NoRelatedSym) SetMiFIDMIC(v string) {
m.Set(field.NewMiFIDMIC(v))
}
// SetNoTrdRegPublications sets NoTrdRegPublications, Tag 2668.
func (m NoRelatedSym) SetNoTrdRegPublications(f NoTrdRegPublicationsRepeatingGroup) {
m.SetGroup(f)
}
// SetPortfolioTrade sets PortfolioTrade, Tag 23079.
func (m NoRelatedSym) SetPortfolioTrade(v bool) {
m.Set(field.NewPortfolioTrade(v))
}
// SetAlgoQuote sets AlgoQuote, Tag 20396.
func (m NoRelatedSym) SetAlgoQuote(value decimal.Decimal, scale int32) {
m.Set(field.NewAlgoQuote(value, scale))
}
// SetAlgoPrice sets AlgoPrice, Tag 20398.
func (m NoRelatedSym) SetAlgoPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewAlgoPrice(value, scale))
}
// SetAlgoDV01 sets AlgoDV01, Tag 20400.
func (m NoRelatedSym) SetAlgoDV01(value decimal.Decimal, scale int32) {
m.Set(field.NewAlgoDV01(value, scale))
}
// SetAlgoNet sets AlgoNet, Tag 20402.
func (m NoRelatedSym) SetAlgoNet(value decimal.Decimal, scale int32) {
m.Set(field.NewAlgoNet(value, scale))
}
// SetLimitCover sets LimitCover, Tag 20417.
func (m NoRelatedSym) SetLimitCover(v string) {
m.Set(field.NewLimitCover(v))
}
// SetContextMidLevel sets ContextMidLevel, Tag 20637.
func (m NoRelatedSym) SetContextMidLevel(value decimal.Decimal, scale int32) {
m.Set(field.NewContextMidLevel(value, scale))
}
// SetInContextLimit sets InContextLimit, Tag 20638.
func (m NoRelatedSym) SetInContextLimit(v bool) {
m.Set(field.NewInContextLimit(v))
}
// SetNetCross sets NetCross, Tag 20644.
func (m NoRelatedSym) SetNetCross(v bool) {
m.Set(field.NewNetCross(v))
}
// SetPriceSrcVal sets PriceSrcVal, Tag 23097.
func (m NoRelatedSym) SetPriceSrcVal(v string) {
m.Set(field.NewPriceSrcVal(v))
}
// SetPriceSrcTime sets PriceSrcTime, Tag 23099.
func (m NoRelatedSym) SetPriceSrcTime(v string) {
m.Set(field.NewPriceSrcTime(v))
}
// SetPriceSrcSide sets PriceSrcSide, Tag 23100.
func (m NoRelatedSym) SetPriceSrcSide(v string) {
m.Set(field.NewPriceSrcSide(v))
}
// SetPriceSrcOffType sets PriceSrcOffType, Tag 23101.
func (m NoRelatedSym) SetPriceSrcOffType(v int) {
m.Set(field.NewPriceSrcOffType(v))
}
// SetUniqueInQid sets UniqueInQid, Tag 20461.
func (m NoRelatedSym) SetUniqueInQid(v string) {
m.Set(field.NewUniqueInQid(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
}
// 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
}
// 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
}
// GetAgreementDesc gets AgreementDesc, Tag 913.
func (m NoRelatedSym) GetAgreementDesc() (v string, err quickfix.MessageRejectError) {
var f field.AgreementDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetAgreementID gets AgreementID, Tag 914.
func (m NoRelatedSym) GetAgreementID() (v string, err quickfix.MessageRejectError) {
var f field.AgreementIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetAgreementDate gets AgreementDate, Tag 915.
func (m NoRelatedSym) GetAgreementDate() (v string, err quickfix.MessageRejectError) {
var f field.AgreementDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetAgreementCurrency gets AgreementCurrency, Tag 918.
func (m NoRelatedSym) GetAgreementCurrency() (v string, err quickfix.MessageRejectError) {
var f field.AgreementCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTerminationType gets TerminationType, Tag 788.
func (m NoRelatedSym) GetTerminationType() (v enum.TerminationType, err quickfix.MessageRejectError) {
var f field.TerminationTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetStartDate gets StartDate, Tag 916.
func (m NoRelatedSym) GetStartDate() (v string, err quickfix.MessageRejectError) {
var f field.StartDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEndDate gets EndDate, Tag 917.
func (m NoRelatedSym) GetEndDate() (v string, err quickfix.MessageRejectError) {
var f field.EndDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetDeliveryType gets DeliveryType, Tag 919.
func (m NoRelatedSym) GetDeliveryType() (v enum.DeliveryType, err quickfix.MessageRejectError) {
var f field.DeliveryTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMarginRatio gets MarginRatio, Tag 898.
func (m NoRelatedSym) GetMarginRatio() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.MarginRatioField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoUnderlyings gets NoUnderlyings, Tag 711.
func (m NoRelatedSym) GetNoUnderlyings() (NoUnderlyingsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoUnderlyingsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetPrevClosePx gets PrevClosePx, Tag 140.
func (m NoRelatedSym) GetPrevClosePx() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.PrevClosePxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetQuoteRequestType gets QuoteRequestType, Tag 303.
func (m NoRelatedSym) GetQuoteRequestType() (v enum.QuoteRequestType, err quickfix.MessageRejectError) {
var f field.QuoteRequestTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetQuoteType gets QuoteType, Tag 537.
func (m NoRelatedSym) GetQuoteType() (v enum.QuoteType, err quickfix.MessageRejectError) {
var f field.QuoteTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTradingSessionID gets TradingSessionID, Tag 336.
func (m NoRelatedSym) GetTradingSessionID() (v enum.TradingSessionID, err quickfix.MessageRejectError) {
var f field.TradingSessionIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTradingSessionSubID gets TradingSessionSubID, Tag 625.
func (m NoRelatedSym) GetTradingSessionSubID() (v enum.TradingSessionSubID, err quickfix.MessageRejectError) {
var f field.TradingSessionSubIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTradeOriginationDate gets TradeOriginationDate, Tag 229.
func (m NoRelatedSym) GetTradeOriginationDate() (v string, err quickfix.MessageRejectError) {
var f field.TradeOriginationDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSide gets Side, Tag 54.
func (m NoRelatedSym) GetSide() (v enum.Side, err quickfix.MessageRejectError) {
var f field.SideField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetQtyType gets QtyType, Tag 854.
func (m NoRelatedSym) GetQtyType() (v enum.QtyType, err quickfix.MessageRejectError) {
var f field.QtyTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOrderQty gets OrderQty, Tag 38.
func (m NoRelatedSym) GetOrderQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.OrderQtyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCashOrderQty gets CashOrderQty, Tag 152.
func (m NoRelatedSym) GetCashOrderQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.CashOrderQtyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOrderPercent gets OrderPercent, Tag 516.
func (m NoRelatedSym) GetOrderPercent() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.OrderPercentField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRoundingDirection gets RoundingDirection, Tag 468.
func (m NoRelatedSym) GetRoundingDirection() (v enum.RoundingDirection, err quickfix.MessageRejectError) {
var f field.RoundingDirectionField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRoundingModulus gets RoundingModulus, Tag 469.
func (m NoRelatedSym) GetRoundingModulus() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.RoundingModulusField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSettlType gets SettlType, Tag 63.
func (m NoRelatedSym) GetSettlType() (v enum.SettlType, err quickfix.MessageRejectError) {
var f field.SettlTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSettlDate gets SettlDate, Tag 64.
func (m NoRelatedSym) GetSettlDate() (v string, err quickfix.MessageRejectError) {
var f field.SettlDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSettlDate2 gets SettlDate2, Tag 193.
func (m NoRelatedSym) GetSettlDate2() (v string, err quickfix.MessageRejectError) {
var f field.SettlDate2Field
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetAuctionDate gets AuctionDate, Tag 5729.
func (m NoRelatedSym) GetAuctionDate() (v string, err quickfix.MessageRejectError) {
var f field.AuctionDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOrderQty2 gets OrderQty2, Tag 192.
func (m NoRelatedSym) GetOrderQty2() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.OrderQty2Field
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCurrency gets Currency, Tag 15.
func (m NoRelatedSym) GetCurrency() (v string, err quickfix.MessageRejectError) {
var f field.CurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoStipulations gets NoStipulations, Tag 232.
func (m NoRelatedSym) GetNoStipulations() (NoStipulationsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoStipulationsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetAccount gets Account, Tag 1.
func (m NoRelatedSym) GetAccount() (v string, err quickfix.MessageRejectError) {
var f field.AccountField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetAcctIDSource gets AcctIDSource, Tag 660.
func (m NoRelatedSym) GetAcctIDSource() (v enum.AcctIDSource, err quickfix.MessageRejectError) {
var f field.AcctIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetAccountType gets AccountType, Tag 581.
func (m NoRelatedSym) GetAccountType() (v enum.AccountType, err quickfix.MessageRejectError) {
var f field.AccountTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTradeInfoSetting gets TradeInfoSetting, Tag 20085.
func (m NoRelatedSym) GetTradeInfoSetting() (v string, err quickfix.MessageRejectError) {
var f field.TradeInfoSettingField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetDelayTime gets DelayTime, Tag 20183.
func (m NoRelatedSym) GetDelayTime() (v int, err quickfix.MessageRejectError) {
var f field.DelayTimeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetIndustryCode gets IndustryCode, Tag 6110.
func (m NoRelatedSym) GetIndustryCode() (v string, err quickfix.MessageRejectError) {
var f field.IndustryCodeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRestructuring gets Restructuring, Tag 20099.
func (m NoRelatedSym) GetRestructuring() (v string, err quickfix.MessageRejectError) {
var f field.RestructuringField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSeniority gets Seniority, Tag 20100.
func (m NoRelatedSym) GetSeniority() (v string, err quickfix.MessageRejectError) {
var f field.SeniorityField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCoopStatus gets CoopStatus, Tag 23670.
func (m NoRelatedSym) GetCoopStatus() (v string, err quickfix.MessageRejectError) {
var f field.CoopStatusField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSalesOBOPrice gets SalesOBOPrice, Tag 23672.
func (m NoRelatedSym) GetSalesOBOPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.SalesOBOPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTrdType gets TrdType, Tag 828.
func (m NoRelatedSym) GetTrdType() (v enum.TrdType, err quickfix.MessageRejectError) {
var f field.TrdTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetDealerVoiceFlag gets DealerVoiceFlag, Tag 23673.
func (m NoRelatedSym) GetDealerVoiceFlag() (v bool, err quickfix.MessageRejectError) {
var f field.DealerVoiceFlagField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoLegs gets NoLegs, Tag 555.
func (m NoRelatedSym) GetNoLegs() (NoLegsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoLegsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetNoQuoteQualifiers gets NoQuoteQualifiers, Tag 735.
func (m NoRelatedSym) GetNoQuoteQualifiers() (NoQuoteQualifiersRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoQuoteQualifiersRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetQuotePriceType gets QuotePriceType, Tag 692.
func (m NoRelatedSym) GetQuotePriceType() (v enum.QuotePriceType, err quickfix.MessageRejectError) {
var f field.QuotePriceTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOrdType gets OrdType, Tag 40.
func (m NoRelatedSym) GetOrdType() (v enum.OrdType, err quickfix.MessageRejectError) {
var f field.OrdTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetValidUntilTime gets ValidUntilTime, Tag 62.
func (m NoRelatedSym) GetValidUntilTime() (v time.Time, err quickfix.MessageRejectError) {
var f field.ValidUntilTimeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetExpireTime gets ExpireTime, Tag 126.
func (m NoRelatedSym) GetExpireTime() (v time.Time, err quickfix.MessageRejectError) {
var f field.ExpireTimeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTransactTime gets TransactTime, Tag 60.
func (m NoRelatedSym) GetTransactTime() (v time.Time, err quickfix.MessageRejectError) {
var f field.TransactTimeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSpread gets Spread, Tag 218.
func (m NoRelatedSym) GetSpread() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.SpreadField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkCurveCurrency gets BenchmarkCurveCurrency, Tag 220.
func (m NoRelatedSym) GetBenchmarkCurveCurrency() (v string, err quickfix.MessageRejectError) {
var f field.BenchmarkCurveCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkCurveName gets BenchmarkCurveName, Tag 221.
func (m NoRelatedSym) GetBenchmarkCurveName() (v enum.BenchmarkCurveName, err quickfix.MessageRejectError) {
var f field.BenchmarkCurveNameField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkCurvePoint gets BenchmarkCurvePoint, Tag 222.
func (m NoRelatedSym) GetBenchmarkCurvePoint() (v string, err quickfix.MessageRejectError) {
var f field.BenchmarkCurvePointField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkPrice gets BenchmarkPrice, Tag 662.
func (m NoRelatedSym) GetBenchmarkPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.BenchmarkPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkYield gets BenchmarkYield, Tag 22570.
func (m NoRelatedSym) GetBenchmarkYield() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.BenchmarkYieldField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkPriceType gets BenchmarkPriceType, Tag 663.
func (m NoRelatedSym) GetBenchmarkPriceType() (v int, err quickfix.MessageRejectError) {
var f field.BenchmarkPriceTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkSecurityID gets BenchmarkSecurityID, Tag 699.
func (m NoRelatedSym) GetBenchmarkSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.BenchmarkSecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkSecurityIDSource gets BenchmarkSecurityIDSource, Tag 761.
func (m NoRelatedSym) GetBenchmarkSecurityIDSource() (v string, err quickfix.MessageRejectError) {
var f field.BenchmarkSecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPriceType gets PriceType, Tag 423.
func (m NoRelatedSym) GetPriceType() (v enum.PriceType, err quickfix.MessageRejectError) {
var f field.PriceTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPrice gets Price, Tag 44.
func (m NoRelatedSym) GetPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.PriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPrice2 gets Price2, Tag 640.
func (m NoRelatedSym) GetPrice2() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.Price2Field
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetYieldType gets YieldType, Tag 235.
func (m NoRelatedSym) GetYieldType() (v enum.YieldType, err quickfix.MessageRejectError) {
var f field.YieldTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetYield gets Yield, Tag 236.
func (m NoRelatedSym) GetYield() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.YieldField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetYieldCalcDate gets YieldCalcDate, Tag 701.
func (m NoRelatedSym) GetYieldCalcDate() (v string, err quickfix.MessageRejectError) {
var f field.YieldCalcDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetYieldRedemptionDate gets YieldRedemptionDate, Tag 696.
func (m NoRelatedSym) GetYieldRedemptionDate() (v string, err quickfix.MessageRejectError) {
var f field.YieldRedemptionDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetYieldRedemptionPrice gets YieldRedemptionPrice, Tag 697.
func (m NoRelatedSym) GetYieldRedemptionPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.YieldRedemptionPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetYieldRedemptionPriceType gets YieldRedemptionPriceType, Tag 698.
func (m NoRelatedSym) GetYieldRedemptionPriceType() (v int, err quickfix.MessageRejectError) {
var f field.YieldRedemptionPriceTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoPartyIDs gets NoPartyIDs, Tag 453.
func (m NoRelatedSym) GetNoPartyIDs() (NoPartyIDsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoPartyIDsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetTargetStrategy gets TargetStrategy, Tag 847.
func (m NoRelatedSym) GetTargetStrategy() (v enum.TargetStrategy, err quickfix.MessageRejectError) {
var f field.TargetStrategyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNotionalAmt gets NotionalAmt, Tag 6917.
func (m NoRelatedSym) GetNotionalAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.NotionalAmtField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetDJSTOXX gets DJSTOXX, Tag 6202.
func (m NoRelatedSym) GetDJSTOXX() (v string, err quickfix.MessageRejectError) {
var f field.DJSTOXXField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMSCI gets MSCI, Tag 6200.
func (m NoRelatedSym) GetMSCI() (v string, err quickfix.MessageRejectError) {
var f field.MSCIField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetReferencePrice gets ReferencePrice, Tag 6087.
func (m NoRelatedSym) GetReferencePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.ReferencePriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTickSize gets TickSize, Tag 5023.
func (m NoRelatedSym) GetTickSize() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.TickSizeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMinQty gets MinQty, Tag 110.
func (m NoRelatedSym) GetMinQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.MinQtyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetListID gets ListID, Tag 66.
func (m NoRelatedSym) GetListID() (v string, err quickfix.MessageRejectError) {
var f field.ListIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTotalNumOfParts gets TotalNumOfParts, Tag 6847.
func (m NoRelatedSym) GetTotalNumOfParts() (v int, err quickfix.MessageRejectError) {
var f field.TotalNumOfPartsField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPartNum gets PartNum, Tag 6849.
func (m NoRelatedSym) GetPartNum() (v int, err quickfix.MessageRejectError) {
var f field.PartNumField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTradeDate gets TradeDate, Tag 75.
func (m NoRelatedSym) GetTradeDate() (v string, err quickfix.MessageRejectError) {
var f field.TradeDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTestMessageIndicator gets TestMessageIndicator, Tag 464.
func (m NoRelatedSym) GetTestMessageIndicator() (v bool, err quickfix.MessageRejectError) {
var f field.TestMessageIndicatorField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoOfDealers gets NoOfDealers, Tag 20086.
func (m NoRelatedSym) GetNoOfDealers() (v int, err quickfix.MessageRejectError) {
var f field.NoOfDealersField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoOfOriginalDealers gets NoOfOriginalDealers, Tag 20280.
func (m NoRelatedSym) GetNoOfOriginalDealers() (v int, err quickfix.MessageRejectError) {
var f field.NoOfOriginalDealersField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoOfRemovedDealers gets NoOfRemovedDealers, Tag 20287.
func (m NoRelatedSym) GetNoOfRemovedDealers() (v int, err quickfix.MessageRejectError) {
var f field.NoOfRemovedDealersField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCanRespond gets CanRespond, Tag 20074.
func (m NoRelatedSym) GetCanRespond() (v bool, err quickfix.MessageRejectError) {
var f field.CanRespondField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCanQuote gets CanQuote, Tag 20075.
func (m NoRelatedSym) GetCanQuote() (v bool, err quickfix.MessageRejectError) {
var f field.CanQuoteField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBookName gets BookName, Tag 20077.
func (m NoRelatedSym) GetBookName() (v string, err quickfix.MessageRejectError) {
var f field.BookNameField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTraderList gets TraderList, Tag 20078.
func (m NoRelatedSym) GetTraderList() (v string, err quickfix.MessageRejectError) {
var f field.TraderListField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOwnerTraderID gets OwnerTraderID, Tag 6153.
func (m NoRelatedSym) GetOwnerTraderID() (v string, err quickfix.MessageRejectError) {
var f field.OwnerTraderIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTimeoutPeriod gets TimeoutPeriod, Tag 20079.
func (m NoRelatedSym) GetTimeoutPeriod() (v int, err quickfix.MessageRejectError) {
var f field.TimeoutPeriodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNewTimePeriod gets NewTimePeriod, Tag 20080.
func (m NoRelatedSym) GetNewTimePeriod() (v int, err quickfix.MessageRejectError) {
var f field.NewTimePeriodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetQuoteTimePeriod gets QuoteTimePeriod, Tag 20081.
func (m NoRelatedSym) GetQuoteTimePeriod() (v int, err quickfix.MessageRejectError) {
var f field.QuoteTimePeriodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetConfirmTimePeriod gets ConfirmTimePeriod, Tag 20082.
func (m NoRelatedSym) GetConfirmTimePeriod() (v int, err quickfix.MessageRejectError) {
var f field.ConfirmTimePeriodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLifeTimePeriod gets LifeTimePeriod, Tag 20084.
func (m NoRelatedSym) GetLifeTimePeriod() (v int, err quickfix.MessageRejectError) {
var f field.LifeTimePeriodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetDoneTimePeriod gets DoneTimePeriod, Tag 20088.
func (m NoRelatedSym) GetDoneTimePeriod() (v int, err quickfix.MessageRejectError) {
var f field.DoneTimePeriodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetDueinTimePeriod gets DueinTimePeriod, Tag 20090.
func (m NoRelatedSym) GetDueinTimePeriod() (v int, err quickfix.MessageRejectError) {
var f field.DueinTimePeriodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetDuebyTimePeriod gets DuebyTimePeriod, Tag 20421.
func (m NoRelatedSym) GetDuebyTimePeriod() (v int, err quickfix.MessageRejectError) {
var f field.DuebyTimePeriodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetGoodforTimePeriod gets GoodforTimePeriod, Tag 20072.
func (m NoRelatedSym) GetGoodforTimePeriod() (v int, err quickfix.MessageRejectError) {
var f field.GoodforTimePeriodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSubjectTimePeriod gets SubjectTimePeriod, Tag 20098.
func (m NoRelatedSym) GetSubjectTimePeriod() (v int, err quickfix.MessageRejectError) {
var f field.SubjectTimePeriodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMultipleTickets gets MultipleTickets, Tag 5745.
func (m NoRelatedSym) GetMultipleTickets() (v int, err quickfix.MessageRejectError) {
var f field.MultipleTicketsField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetISMN gets ISMN, Tag 5772.
func (m NoRelatedSym) GetISMN() (v int, err quickfix.MessageRejectError) {
var f field.ISMNField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEndDateBusDayAdj gets EndDateBusDayAdj, Tag 20038.
func (m NoRelatedSym) GetEndDateBusDayAdj() (v string, err quickfix.MessageRejectError) {
var f field.EndDateBusDayAdjField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOnTheRunValue gets OnTheRunValue, Tag 20052.
func (m NoRelatedSym) GetOnTheRunValue() (v int, err quickfix.MessageRejectError) {
var f field.OnTheRunValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetReopeningValue gets ReopeningValue, Tag 20054.
func (m NoRelatedSym) GetReopeningValue() (v int, err quickfix.MessageRejectError) {
var f field.ReopeningValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCMPB gets CMPB, Tag 5756.
func (m NoRelatedSym) GetCMPB() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.CMPBField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCMPA gets CMPA, Tag 5757.
func (m NoRelatedSym) GetCMPA() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.CMPAField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCMPSP gets CMPSP, Tag 5759.
func (m NoRelatedSym) GetCMPSP() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.CMPSPField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCompQuote gets CompQuote, Tag 5730.
func (m NoRelatedSym) GetCompQuote() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.CompQuoteField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBidPx gets BidPx, Tag 132.
func (m NoRelatedSym) GetBidPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.BidPxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOfferPx gets OfferPx, Tag 133.
func (m NoRelatedSym) GetOfferPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.OfferPxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPositionEffect gets PositionEffect, Tag 77.
func (m NoRelatedSym) GetPositionEffect() (v enum.PositionEffect, err quickfix.MessageRejectError) {
var f field.PositionEffectField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSwapType gets SwapType, Tag 6668.
func (m NoRelatedSym) GetSwapType() (v string, err quickfix.MessageRejectError) {
var f field.SwapTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSWSPRD gets SWSPRD, Tag 5767.
func (m NoRelatedSym) GetSWSPRD() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.SWSPRDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNegotiationType gets NegotiationType, Tag 20073.
func (m NoRelatedSym) GetNegotiationType() (v string, err quickfix.MessageRejectError) {
var f field.NegotiationTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCanRequote gets CanRequote, Tag 20076.
func (m NoRelatedSym) GetCanRequote() (v bool, err quickfix.MessageRejectError) {
var f field.CanRequoteField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCanCounter gets CanCounter, Tag 20156.
func (m NoRelatedSym) GetCanCounter() (v bool, err quickfix.MessageRejectError) {
var f field.CanCounterField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRequoteTimePeriod gets RequoteTimePeriod, Tag 20083.
func (m NoRelatedSym) GetRequoteTimePeriod() (v int, err quickfix.MessageRejectError) {
var f field.RequoteTimePeriodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOutstandingAmount gets OutstandingAmount, Tag 20130.
func (m NoRelatedSym) GetOutstandingAmount() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.OutstandingAmountField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCompositeSize gets CompositeSize, Tag 20132.
func (m NoRelatedSym) GetCompositeSize() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.CompositeSizeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetInventoryAmount gets InventoryAmount, Tag 20134.
func (m NoRelatedSym) GetInventoryAmount() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.InventoryAmountField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetInventorySpread gets InventorySpread, Tag 20136.
func (m NoRelatedSym) GetInventorySpread() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.InventorySpreadField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLeadManagers gets LeadManagers, Tag 20138.
func (m NoRelatedSym) GetLeadManagers() (v string, err quickfix.MessageRejectError) {
var f field.LeadManagersField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRoundLot gets RoundLot, Tag 561.
func (m NoRelatedSym) GetRoundLot() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.RoundLotField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMinTradeVol gets MinTradeVol, Tag 562.
func (m NoRelatedSym) GetMinTradeVol() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.MinTradeVolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoCreditRating gets NoCreditRating, Tag 5114.
func (m NoRelatedSym) GetNoCreditRating() (NoCreditRatingRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoCreditRatingRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetNoCalcProvided gets NoCalcProvided, Tag 20140.
func (m NoRelatedSym) GetNoCalcProvided() (v bool, err quickfix.MessageRejectError) {
var f field.NoCalcProvidedField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkSymbolSfx gets BenchmarkSymbolSfx, Tag 6633.
func (m NoRelatedSym) GetBenchmarkSymbolSfx() (v string, err quickfix.MessageRejectError) {
var f field.BenchmarkSymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkSymbolAltSfx gets BenchmarkSymbolAltSfx, Tag 20165.
func (m NoRelatedSym) GetBenchmarkSymbolAltSfx() (v string, err quickfix.MessageRejectError) {
var f field.BenchmarkSymbolAltSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTWBenchmarkSymbolSfx gets TWBenchmarkSymbolSfx, Tag 20153.
func (m NoRelatedSym) GetTWBenchmarkSymbolSfx() (v string, err quickfix.MessageRejectError) {
var f field.TWBenchmarkSymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTWBenchmarkSymbolAltSfx gets TWBenchmarkSymbolAltSfx, Tag 20167.
func (m NoRelatedSym) GetTWBenchmarkSymbolAltSfx() (v string, err quickfix.MessageRejectError) {
var f field.TWBenchmarkSymbolAltSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTWBenchmarkSecurityID gets TWBenchmarkSecurityID, Tag 20149.
func (m NoRelatedSym) GetTWBenchmarkSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.TWBenchmarkSecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTWBenchmarkSecurityIDSource gets TWBenchmarkSecurityIDSource, Tag 20150.
func (m NoRelatedSym) GetTWBenchmarkSecurityIDSource() (v string, err quickfix.MessageRejectError) {
var f field.TWBenchmarkSecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkSecurityAltID gets BenchmarkSecurityAltID, Tag 20157.
func (m NoRelatedSym) GetBenchmarkSecurityAltID() (v string, err quickfix.MessageRejectError) {
var f field.BenchmarkSecurityAltIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetBenchmarkSecurityAltIDSource gets BenchmarkSecurityAltIDSource, Tag 20158.
func (m NoRelatedSym) GetBenchmarkSecurityAltIDSource() (v string, err quickfix.MessageRejectError) {
var f field.BenchmarkSecurityAltIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTWBenchmarkSecurityAltID gets TWBenchmarkSecurityAltID, Tag 20161.
func (m NoRelatedSym) GetTWBenchmarkSecurityAltID() (v string, err quickfix.MessageRejectError) {
var f field.TWBenchmarkSecurityAltIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTWBenchmarkSecurityAltIDSource gets TWBenchmarkSecurityAltIDSource, Tag 20162.
func (m NoRelatedSym) GetTWBenchmarkSecurityAltIDSource() (v string, err quickfix.MessageRejectError) {
var f field.TWBenchmarkSecurityAltIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTWBenchmarkPrice gets TWBenchmarkPrice, Tag 20171.
func (m NoRelatedSym) GetTWBenchmarkPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.TWBenchmarkPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTWBenchmarkPriceType gets TWBenchmarkPriceType, Tag 20172.
func (m NoRelatedSym) GetTWBenchmarkPriceType() (v int, err quickfix.MessageRejectError) {
var f field.TWBenchmarkPriceTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetDealerBenchmarkPrice gets DealerBenchmarkPrice, Tag 22572.
func (m NoRelatedSym) GetDealerBenchmarkPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.DealerBenchmarkPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetDealerBenchmarkYield gets DealerBenchmarkYield, Tag 22574.
func (m NoRelatedSym) GetDealerBenchmarkYield() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.DealerBenchmarkYieldField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUseDealerBenchmark gets UseDealerBenchmark, Tag 22576.
func (m NoRelatedSym) GetUseDealerBenchmark() (v bool, err quickfix.MessageRejectError) {
var f field.UseDealerBenchmarkField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetInventoryTier gets InventoryTier, Tag 20145.
func (m NoRelatedSym) GetInventoryTier() (v string, err quickfix.MessageRejectError) {
var f field.InventoryTierField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPricingTier gets PricingTier, Tag 20147.
func (m NoRelatedSym) GetPricingTier() (v string, err quickfix.MessageRejectError) {
var f field.PricingTierField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetFirstCouponPaymentDate gets FirstCouponPaymentDate, Tag 20175.
func (m NoRelatedSym) GetFirstCouponPaymentDate() (v string, err quickfix.MessageRejectError) {
var f field.FirstCouponPaymentDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNetMoney gets NetMoney, Tag 118.
func (m NoRelatedSym) GetNetMoney() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.NetMoneyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetGrossTradeAmt gets GrossTradeAmt, Tag 381.
func (m NoRelatedSym) GetGrossTradeAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.GrossTradeAmtField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNextCouponRate gets NextCouponRate, Tag 20179.
func (m NoRelatedSym) GetNextCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.NextCouponRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTradeAxeIndicator gets TradeAxeIndicator, Tag 20232.
func (m NoRelatedSym) GetTradeAxeIndicator() (v string, err quickfix.MessageRejectError) {
var f field.TradeAxeIndicatorField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetExecutionFeeSchedule gets ExecutionFeeSchedule, Tag 20056.
func (m NoRelatedSym) GetExecutionFeeSchedule() (v string, err quickfix.MessageRejectError) {
var f field.ExecutionFeeScheduleField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetExecutionFeeType gets ExecutionFeeType, Tag 20058.
func (m NoRelatedSym) GetExecutionFeeType() (v int, err quickfix.MessageRejectError) {
var f field.ExecutionFeeTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetExecutionFeeMarkup gets ExecutionFeeMarkup, Tag 20060.
func (m NoRelatedSym) GetExecutionFeeMarkup() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.ExecutionFeeMarkupField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetExecutionFeeAmount gets ExecutionFeeAmount, Tag 20062.
func (m NoRelatedSym) GetExecutionFeeAmount() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.ExecutionFeeAmountField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNegotiationMethod gets NegotiationMethod, Tag 2115.
func (m NoRelatedSym) GetNegotiationMethod() (v int, err quickfix.MessageRejectError) {
var f field.NegotiationMethodField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNegotiationTime gets NegotiationTime, Tag 22639.
func (m NoRelatedSym) GetNegotiationTime() (v string, err quickfix.MessageRejectError) {
var f field.NegotiationTimeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetIntermediated gets Intermediated, Tag 20262.
func (m NoRelatedSym) GetIntermediated() (v bool, err quickfix.MessageRejectError) {
var f field.IntermediatedField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCallDate gets CallDate, Tag 20222.
func (m NoRelatedSym) GetCallDate() (v string, err quickfix.MessageRejectError) {
var f field.CallDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCallType gets CallType, Tag 20223.
func (m NoRelatedSym) GetCallType() (v string, err quickfix.MessageRejectError) {
var f field.CallTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCallPrice gets CallPrice, Tag 20266.
func (m NoRelatedSym) GetCallPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.CallPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetFxRate gets FxRate, Tag 22630.
func (m NoRelatedSym) GetFxRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.FxRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSettlCurrency gets SettlCurrency, Tag 120.
func (m NoRelatedSym) GetSettlCurrency() (v string, err quickfix.MessageRejectError) {
var f field.SettlCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMarketSegment gets MarketSegment, Tag 20265.
func (m NoRelatedSym) GetMarketSegment() (v string, err quickfix.MessageRejectError) {
var f field.MarketSegmentField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRegulatoryType gets RegulatoryType, Tag 20227.
func (m NoRelatedSym) GetRegulatoryType() (v string, err quickfix.MessageRejectError) {
var f field.RegulatoryTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetRationale gets Rationale, Tag 20306.
func (m NoRelatedSym) GetRationale() (v string, err quickfix.MessageRejectError) {
var f field.RationaleField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetA2ATrade gets A2ATrade, Tag 22659.
func (m NoRelatedSym) GetA2ATrade() (v bool, err quickfix.MessageRejectError) {
var f field.A2ATradeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPreTradeAnonymity gets PreTradeAnonymity, Tag 1091.
func (m NoRelatedSym) GetPreTradeAnonymity() (v bool, err quickfix.MessageRejectError) {
var f field.PreTradeAnonymityField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetOnMTF gets OnMTF, Tag 23070.
func (m NoRelatedSym) GetOnMTF() (v bool, err quickfix.MessageRejectError) {
var f field.OnMTFField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLiquidity gets Liquidity, Tag 23074.
func (m NoRelatedSym) GetLiquidity() (v int, err quickfix.MessageRejectError) {
var f field.LiquidityField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPreTrans gets PreTrans, Tag 23076.
func (m NoRelatedSym) GetPreTrans() (v int, err quickfix.MessageRejectError) {
var f field.PreTransField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetClientTradingCapacity gets ClientTradingCapacity, Tag 23060.
func (m NoRelatedSym) GetClientTradingCapacity() (v string, err quickfix.MessageRejectError) {
var f field.ClientTradingCapacityField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetMiFIDMIC gets MiFIDMIC, Tag 23068.
func (m NoRelatedSym) GetMiFIDMIC() (v string, err quickfix.MessageRejectError) {
var f field.MiFIDMICField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoTrdRegPublications gets NoTrdRegPublications, Tag 2668.
func (m NoRelatedSym) GetNoTrdRegPublications() (NoTrdRegPublicationsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoTrdRegPublicationsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetPortfolioTrade gets PortfolioTrade, Tag 23079.
func (m NoRelatedSym) GetPortfolioTrade() (v bool, err quickfix.MessageRejectError) {
var f field.PortfolioTradeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetAlgoQuote gets AlgoQuote, Tag 20396.
func (m NoRelatedSym) GetAlgoQuote() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.AlgoQuoteField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetAlgoPrice gets AlgoPrice, Tag 20398.
func (m NoRelatedSym) GetAlgoPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.AlgoPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetAlgoDV01 gets AlgoDV01, Tag 20400.
func (m NoRelatedSym) GetAlgoDV01() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.AlgoDV01Field
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetAlgoNet gets AlgoNet, Tag 20402.
func (m NoRelatedSym) GetAlgoNet() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.AlgoNetField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLimitCover gets LimitCover, Tag 20417.
func (m NoRelatedSym) GetLimitCover() (v string, err quickfix.MessageRejectError) {
var f field.LimitCoverField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetContextMidLevel gets ContextMidLevel, Tag 20637.
func (m NoRelatedSym) GetContextMidLevel() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.ContextMidLevelField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetInContextLimit gets InContextLimit, Tag 20638.
func (m NoRelatedSym) GetInContextLimit() (v bool, err quickfix.MessageRejectError) {
var f field.InContextLimitField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNetCross gets NetCross, Tag 20644.
func (m NoRelatedSym) GetNetCross() (v bool, err quickfix.MessageRejectError) {
var f field.NetCrossField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPriceSrcVal gets PriceSrcVal, Tag 23097.
func (m NoRelatedSym) GetPriceSrcVal() (v string, err quickfix.MessageRejectError) {
var f field.PriceSrcValField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPriceSrcTime gets PriceSrcTime, Tag 23099.
func (m NoRelatedSym) GetPriceSrcTime() (v string, err quickfix.MessageRejectError) {
var f field.PriceSrcTimeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPriceSrcSide gets PriceSrcSide, Tag 23100.
func (m NoRelatedSym) GetPriceSrcSide() (v string, err quickfix.MessageRejectError) {
var f field.PriceSrcSideField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetPriceSrcOffType gets PriceSrcOffType, Tag 23101.
func (m NoRelatedSym) GetPriceSrcOffType() (v int, err quickfix.MessageRejectError) {
var f field.PriceSrcOffTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUniqueInQid gets UniqueInQid, Tag 20461.
func (m NoRelatedSym) GetUniqueInQid() (v string, err quickfix.MessageRejectError) {
var f field.UniqueInQidField
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)
}
// 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)
}
// 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)
}
// HasAgreementDesc returns true if AgreementDesc is present, Tag 913.
func (m NoRelatedSym) HasAgreementDesc() bool {
return m.Has(tag.AgreementDesc)
}
// HasAgreementID returns true if AgreementID is present, Tag 914.
func (m NoRelatedSym) HasAgreementID() bool {
return m.Has(tag.AgreementID)
}
// HasAgreementDate returns true if AgreementDate is present, Tag 915.
func (m NoRelatedSym) HasAgreementDate() bool {
return m.Has(tag.AgreementDate)
}
// HasAgreementCurrency returns true if AgreementCurrency is present, Tag 918.
func (m NoRelatedSym) HasAgreementCurrency() bool {
return m.Has(tag.AgreementCurrency)
}
// HasTerminationType returns true if TerminationType is present, Tag 788.
func (m NoRelatedSym) HasTerminationType() bool {
return m.Has(tag.TerminationType)
}
// HasStartDate returns true if StartDate is present, Tag 916.
func (m NoRelatedSym) HasStartDate() bool {
return m.Has(tag.StartDate)
}
// HasEndDate returns true if EndDate is present, Tag 917.
func (m NoRelatedSym) HasEndDate() bool {
return m.Has(tag.EndDate)
}
// HasDeliveryType returns true if DeliveryType is present, Tag 919.
func (m NoRelatedSym) HasDeliveryType() bool {
return m.Has(tag.DeliveryType)
}
// HasMarginRatio returns true if MarginRatio is present, Tag 898.
func (m NoRelatedSym) HasMarginRatio() bool {
return m.Has(tag.MarginRatio)
}
// HasNoUnderlyings returns true if NoUnderlyings is present, Tag 711.
func (m NoRelatedSym) HasNoUnderlyings() bool {
return m.Has(tag.NoUnderlyings)
}
// HasPrevClosePx returns true if PrevClosePx is present, Tag 140.
func (m NoRelatedSym) HasPrevClosePx() bool {
return m.Has(tag.PrevClosePx)
}
// HasQuoteRequestType returns true if QuoteRequestType is present, Tag 303.
func (m NoRelatedSym) HasQuoteRequestType() bool {
return m.Has(tag.QuoteRequestType)
}
// HasQuoteType returns true if QuoteType is present, Tag 537.
func (m NoRelatedSym) HasQuoteType() bool {
return m.Has(tag.QuoteType)
}
// HasTradingSessionID returns true if TradingSessionID is present, Tag 336.
func (m NoRelatedSym) HasTradingSessionID() bool {
return m.Has(tag.TradingSessionID)
}
// HasTradingSessionSubID returns true if TradingSessionSubID is present, Tag 625.
func (m NoRelatedSym) HasTradingSessionSubID() bool {
return m.Has(tag.TradingSessionSubID)
}
// HasTradeOriginationDate returns true if TradeOriginationDate is present, Tag 229.
func (m NoRelatedSym) HasTradeOriginationDate() bool {
return m.Has(tag.TradeOriginationDate)
}
// HasSide returns true if Side is present, Tag 54.
func (m NoRelatedSym) HasSide() bool {
return m.Has(tag.Side)
}
// HasQtyType returns true if QtyType is present, Tag 854.
func (m NoRelatedSym) HasQtyType() bool {
return m.Has(tag.QtyType)
}
// HasOrderQty returns true if OrderQty is present, Tag 38.
func (m NoRelatedSym) HasOrderQty() bool {
return m.Has(tag.OrderQty)
}
// HasCashOrderQty returns true if CashOrderQty is present, Tag 152.
func (m NoRelatedSym) HasCashOrderQty() bool {
return m.Has(tag.CashOrderQty)
}
// HasOrderPercent returns true if OrderPercent is present, Tag 516.
func (m NoRelatedSym) HasOrderPercent() bool {
return m.Has(tag.OrderPercent)
}
// HasRoundingDirection returns true if RoundingDirection is present, Tag 468.
func (m NoRelatedSym) HasRoundingDirection() bool {
return m.Has(tag.RoundingDirection)
}
// HasRoundingModulus returns true if RoundingModulus is present, Tag 469.
func (m NoRelatedSym) HasRoundingModulus() bool {
return m.Has(tag.RoundingModulus)
}
// HasSettlType returns true if SettlType is present, Tag 63.
func (m NoRelatedSym) HasSettlType() bool {
return m.Has(tag.SettlType)
}
// HasSettlDate returns true if SettlDate is present, Tag 64.
func (m NoRelatedSym) HasSettlDate() bool {
return m.Has(tag.SettlDate)
}
// HasSettlDate2 returns true if SettlDate2 is present, Tag 193.
func (m NoRelatedSym) HasSettlDate2() bool {
return m.Has(tag.SettlDate2)
}
// HasAuctionDate returns true if AuctionDate is present, Tag 5729.
func (m NoRelatedSym) HasAuctionDate() bool {
return m.Has(tag.AuctionDate)
}
// HasOrderQty2 returns true if OrderQty2 is present, Tag 192.
func (m NoRelatedSym) HasOrderQty2() bool {
return m.Has(tag.OrderQty2)
}
// HasCurrency returns true if Currency is present, Tag 15.
func (m NoRelatedSym) HasCurrency() bool {
return m.Has(tag.Currency)
}
// HasNoStipulations returns true if NoStipulations is present, Tag 232.
func (m NoRelatedSym) HasNoStipulations() bool {
return m.Has(tag.NoStipulations)
}
// HasAccount returns true if Account is present, Tag 1.
func (m NoRelatedSym) HasAccount() bool {
return m.Has(tag.Account)
}
// HasAcctIDSource returns true if AcctIDSource is present, Tag 660.
func (m NoRelatedSym) HasAcctIDSource() bool {
return m.Has(tag.AcctIDSource)
}
// HasAccountType returns true if AccountType is present, Tag 581.
func (m NoRelatedSym) HasAccountType() bool {
return m.Has(tag.AccountType)
}
// HasTradeInfoSetting returns true if TradeInfoSetting is present, Tag 20085.
func (m NoRelatedSym) HasTradeInfoSetting() bool {
return m.Has(tag.TradeInfoSetting)
}
// HasDelayTime returns true if DelayTime is present, Tag 20183.
func (m NoRelatedSym) HasDelayTime() bool {
return m.Has(tag.DelayTime)
}
// HasIndustryCode returns true if IndustryCode is present, Tag 6110.
func (m NoRelatedSym) HasIndustryCode() bool {
return m.Has(tag.IndustryCode)
}
// HasRestructuring returns true if Restructuring is present, Tag 20099.
func (m NoRelatedSym) HasRestructuring() bool {
return m.Has(tag.Restructuring)
}
// HasSeniority returns true if Seniority is present, Tag 20100.
func (m NoRelatedSym) HasSeniority() bool {
return m.Has(tag.Seniority)
}
// HasCoopStatus returns true if CoopStatus is present, Tag 23670.
func (m NoRelatedSym) HasCoopStatus() bool {
return m.Has(tag.CoopStatus)
}
// HasSalesOBOPrice returns true if SalesOBOPrice is present, Tag 23672.
func (m NoRelatedSym) HasSalesOBOPrice() bool {
return m.Has(tag.SalesOBOPrice)
}
// HasTrdType returns true if TrdType is present, Tag 828.
func (m NoRelatedSym) HasTrdType() bool {
return m.Has(tag.TrdType)
}
// HasDealerVoiceFlag returns true if DealerVoiceFlag is present, Tag 23673.
func (m NoRelatedSym) HasDealerVoiceFlag() bool {
return m.Has(tag.DealerVoiceFlag)
}
// HasNoLegs returns true if NoLegs is present, Tag 555.
func (m NoRelatedSym) HasNoLegs() bool {
return m.Has(tag.NoLegs)
}
// HasNoQuoteQualifiers returns true if NoQuoteQualifiers is present, Tag 735.
func (m NoRelatedSym) HasNoQuoteQualifiers() bool {
return m.Has(tag.NoQuoteQualifiers)
}
// HasQuotePriceType returns true if QuotePriceType is present, Tag 692.
func (m NoRelatedSym) HasQuotePriceType() bool {
return m.Has(tag.QuotePriceType)
}
// HasOrdType returns true if OrdType is present, Tag 40.
func (m NoRelatedSym) HasOrdType() bool {
return m.Has(tag.OrdType)
}
// HasValidUntilTime returns true if ValidUntilTime is present, Tag 62.
func (m NoRelatedSym) HasValidUntilTime() bool {
return m.Has(tag.ValidUntilTime)
}
// HasExpireTime returns true if ExpireTime is present, Tag 126.
func (m NoRelatedSym) HasExpireTime() bool {
return m.Has(tag.ExpireTime)
}
// HasTransactTime returns true if TransactTime is present, Tag 60.
func (m NoRelatedSym) HasTransactTime() bool {
return m.Has(tag.TransactTime)
}
// HasSpread returns true if Spread is present, Tag 218.
func (m NoRelatedSym) HasSpread() bool {
return m.Has(tag.Spread)
}
// HasBenchmarkCurveCurrency returns true if BenchmarkCurveCurrency is present, Tag 220.
func (m NoRelatedSym) HasBenchmarkCurveCurrency() bool {
return m.Has(tag.BenchmarkCurveCurrency)
}
// HasBenchmarkCurveName returns true if BenchmarkCurveName is present, Tag 221.
func (m NoRelatedSym) HasBenchmarkCurveName() bool {
return m.Has(tag.BenchmarkCurveName)
}
// HasBenchmarkCurvePoint returns true if BenchmarkCurvePoint is present, Tag 222.
func (m NoRelatedSym) HasBenchmarkCurvePoint() bool {
return m.Has(tag.BenchmarkCurvePoint)
}
// HasBenchmarkPrice returns true if BenchmarkPrice is present, Tag 662.
func (m NoRelatedSym) HasBenchmarkPrice() bool {
return m.Has(tag.BenchmarkPrice)
}
// HasBenchmarkYield returns true if BenchmarkYield is present, Tag 22570.
func (m NoRelatedSym) HasBenchmarkYield() bool {
return m.Has(tag.BenchmarkYield)
}
// HasBenchmarkPriceType returns true if BenchmarkPriceType is present, Tag 663.
func (m NoRelatedSym) HasBenchmarkPriceType() bool {
return m.Has(tag.BenchmarkPriceType)
}
// HasBenchmarkSecurityID returns true if BenchmarkSecurityID is present, Tag 699.
func (m NoRelatedSym) HasBenchmarkSecurityID() bool {
return m.Has(tag.BenchmarkSecurityID)
}
// HasBenchmarkSecurityIDSource returns true if BenchmarkSecurityIDSource is present, Tag 761.
func (m NoRelatedSym) HasBenchmarkSecurityIDSource() bool {
return m.Has(tag.BenchmarkSecurityIDSource)
}
// HasPriceType returns true if PriceType is present, Tag 423.
func (m NoRelatedSym) HasPriceType() bool {
return m.Has(tag.PriceType)
}
// HasPrice returns true if Price is present, Tag 44.
func (m NoRelatedSym) HasPrice() bool {
return m.Has(tag.Price)
}
// HasPrice2 returns true if Price2 is present, Tag 640.
func (m NoRelatedSym) HasPrice2() bool {
return m.Has(tag.Price2)
}
// HasYieldType returns true if YieldType is present, Tag 235.
func (m NoRelatedSym) HasYieldType() bool {
return m.Has(tag.YieldType)
}
// HasYield returns true if Yield is present, Tag 236.
func (m NoRelatedSym) HasYield() bool {
return m.Has(tag.Yield)
}
// HasYieldCalcDate returns true if YieldCalcDate is present, Tag 701.
func (m NoRelatedSym) HasYieldCalcDate() bool {
return m.Has(tag.YieldCalcDate)
}
// HasYieldRedemptionDate returns true if YieldRedemptionDate is present, Tag 696.
func (m NoRelatedSym) HasYieldRedemptionDate() bool {
return m.Has(tag.YieldRedemptionDate)
}
// HasYieldRedemptionPrice returns true if YieldRedemptionPrice is present, Tag 697.
func (m NoRelatedSym) HasYieldRedemptionPrice() bool {
return m.Has(tag.YieldRedemptionPrice)
}
// HasYieldRedemptionPriceType returns true if YieldRedemptionPriceType is present, Tag 698.
func (m NoRelatedSym) HasYieldRedemptionPriceType() bool {
return m.Has(tag.YieldRedemptionPriceType)
}
// HasNoPartyIDs returns true if NoPartyIDs is present, Tag 453.
func (m NoRelatedSym) HasNoPartyIDs() bool {
return m.Has(tag.NoPartyIDs)
}
// HasTargetStrategy returns true if TargetStrategy is present, Tag 847.
func (m NoRelatedSym) HasTargetStrategy() bool {
return m.Has(tag.TargetStrategy)
}
// HasNotionalAmt returns true if NotionalAmt is present, Tag 6917.
func (m NoRelatedSym) HasNotionalAmt() bool {
return m.Has(tag.NotionalAmt)
}
// HasDJSTOXX returns true if DJSTOXX is present, Tag 6202.
func (m NoRelatedSym) HasDJSTOXX() bool {
return m.Has(tag.DJSTOXX)
}
// HasMSCI returns true if MSCI is present, Tag 6200.
func (m NoRelatedSym) HasMSCI() bool {
return m.Has(tag.MSCI)
}
// HasReferencePrice returns true if ReferencePrice is present, Tag 6087.
func (m NoRelatedSym) HasReferencePrice() bool {
return m.Has(tag.ReferencePrice)
}
// HasTickSize returns true if TickSize is present, Tag 5023.
func (m NoRelatedSym) HasTickSize() bool {
return m.Has(tag.TickSize)
}
// HasMinQty returns true if MinQty is present, Tag 110.
func (m NoRelatedSym) HasMinQty() bool {
return m.Has(tag.MinQty)
}
// HasListID returns true if ListID is present, Tag 66.
func (m NoRelatedSym) HasListID() bool {
return m.Has(tag.ListID)
}
// HasTotalNumOfParts returns true if TotalNumOfParts is present, Tag 6847.
func (m NoRelatedSym) HasTotalNumOfParts() bool {
return m.Has(tag.TotalNumOfParts)
}
// HasPartNum returns true if PartNum is present, Tag 6849.
func (m NoRelatedSym) HasPartNum() bool {
return m.Has(tag.PartNum)
}
// HasTradeDate returns true if TradeDate is present, Tag 75.
func (m NoRelatedSym) HasTradeDate() bool {
return m.Has(tag.TradeDate)
}
// HasTestMessageIndicator returns true if TestMessageIndicator is present, Tag 464.
func (m NoRelatedSym) HasTestMessageIndicator() bool {
return m.Has(tag.TestMessageIndicator)
}
// HasNoOfDealers returns true if NoOfDealers is present, Tag 20086.
func (m NoRelatedSym) HasNoOfDealers() bool {
return m.Has(tag.NoOfDealers)
}
// HasNoOfOriginalDealers returns true if NoOfOriginalDealers is present, Tag 20280.
func (m NoRelatedSym) HasNoOfOriginalDealers() bool {
return m.Has(tag.NoOfOriginalDealers)
}
// HasNoOfRemovedDealers returns true if NoOfRemovedDealers is present, Tag 20287.
func (m NoRelatedSym) HasNoOfRemovedDealers() bool {
return m.Has(tag.NoOfRemovedDealers)
}
// HasCanRespond returns true if CanRespond is present, Tag 20074.
func (m NoRelatedSym) HasCanRespond() bool {
return m.Has(tag.CanRespond)
}
// HasCanQuote returns true if CanQuote is present, Tag 20075.
func (m NoRelatedSym) HasCanQuote() bool {
return m.Has(tag.CanQuote)
}
// HasBookName returns true if BookName is present, Tag 20077.
func (m NoRelatedSym) HasBookName() bool {
return m.Has(tag.BookName)
}
// HasTraderList returns true if TraderList is present, Tag 20078.
func (m NoRelatedSym) HasTraderList() bool {
return m.Has(tag.TraderList)
}
// HasOwnerTraderID returns true if OwnerTraderID is present, Tag 6153.
func (m NoRelatedSym) HasOwnerTraderID() bool {
return m.Has(tag.OwnerTraderID)
}
// HasTimeoutPeriod returns true if TimeoutPeriod is present, Tag 20079.
func (m NoRelatedSym) HasTimeoutPeriod() bool {
return m.Has(tag.TimeoutPeriod)
}
// HasNewTimePeriod returns true if NewTimePeriod is present, Tag 20080.
func (m NoRelatedSym) HasNewTimePeriod() bool {
return m.Has(tag.NewTimePeriod)
}
// HasQuoteTimePeriod returns true if QuoteTimePeriod is present, Tag 20081.
func (m NoRelatedSym) HasQuoteTimePeriod() bool {
return m.Has(tag.QuoteTimePeriod)
}
// HasConfirmTimePeriod returns true if ConfirmTimePeriod is present, Tag 20082.
func (m NoRelatedSym) HasConfirmTimePeriod() bool {
return m.Has(tag.ConfirmTimePeriod)
}
// HasLifeTimePeriod returns true if LifeTimePeriod is present, Tag 20084.
func (m NoRelatedSym) HasLifeTimePeriod() bool {
return m.Has(tag.LifeTimePeriod)
}
// HasDoneTimePeriod returns true if DoneTimePeriod is present, Tag 20088.
func (m NoRelatedSym) HasDoneTimePeriod() bool {
return m.Has(tag.DoneTimePeriod)
}
// HasDueinTimePeriod returns true if DueinTimePeriod is present, Tag 20090.
func (m NoRelatedSym) HasDueinTimePeriod() bool {
return m.Has(tag.DueinTimePeriod)
}
// HasDuebyTimePeriod returns true if DuebyTimePeriod is present, Tag 20421.
func (m NoRelatedSym) HasDuebyTimePeriod() bool {
return m.Has(tag.DuebyTimePeriod)
}
// HasGoodforTimePeriod returns true if GoodforTimePeriod is present, Tag 20072.
func (m NoRelatedSym) HasGoodforTimePeriod() bool {
return m.Has(tag.GoodforTimePeriod)
}
// HasSubjectTimePeriod returns true if SubjectTimePeriod is present, Tag 20098.
func (m NoRelatedSym) HasSubjectTimePeriod() bool {
return m.Has(tag.SubjectTimePeriod)
}
// HasMultipleTickets returns true if MultipleTickets is present, Tag 5745.
func (m NoRelatedSym) HasMultipleTickets() bool {
return m.Has(tag.MultipleTickets)
}
// HasISMN returns true if ISMN is present, Tag 5772.
func (m NoRelatedSym) HasISMN() bool {
return m.Has(tag.ISMN)
}
// HasEndDateBusDayAdj returns true if EndDateBusDayAdj is present, Tag 20038.
func (m NoRelatedSym) HasEndDateBusDayAdj() bool {
return m.Has(tag.EndDateBusDayAdj)
}
// HasOnTheRunValue returns true if OnTheRunValue is present, Tag 20052.
func (m NoRelatedSym) HasOnTheRunValue() bool {
return m.Has(tag.OnTheRunValue)
}
// HasReopeningValue returns true if ReopeningValue is present, Tag 20054.
func (m NoRelatedSym) HasReopeningValue() bool {
return m.Has(tag.ReopeningValue)
}
// HasCMPB returns true if CMPB is present, Tag 5756.
func (m NoRelatedSym) HasCMPB() bool {
return m.Has(tag.CMPB)
}
// HasCMPA returns true if CMPA is present, Tag 5757.
func (m NoRelatedSym) HasCMPA() bool {
return m.Has(tag.CMPA)
}
// HasCMPSP returns true if CMPSP is present, Tag 5759.
func (m NoRelatedSym) HasCMPSP() bool {
return m.Has(tag.CMPSP)
}
// HasCompQuote returns true if CompQuote is present, Tag 5730.
func (m NoRelatedSym) HasCompQuote() bool {
return m.Has(tag.CompQuote)
}
// HasBidPx returns true if BidPx is present, Tag 132.
func (m NoRelatedSym) HasBidPx() bool {
return m.Has(tag.BidPx)
}
// HasOfferPx returns true if OfferPx is present, Tag 133.
func (m NoRelatedSym) HasOfferPx() bool {
return m.Has(tag.OfferPx)
}
// HasPositionEffect returns true if PositionEffect is present, Tag 77.
func (m NoRelatedSym) HasPositionEffect() bool {
return m.Has(tag.PositionEffect)
}
// HasSwapType returns true if SwapType is present, Tag 6668.
func (m NoRelatedSym) HasSwapType() bool {
return m.Has(tag.SwapType)
}
// HasSWSPRD returns true if SWSPRD is present, Tag 5767.
func (m NoRelatedSym) HasSWSPRD() bool {
return m.Has(tag.SWSPRD)
}
// HasNegotiationType returns true if NegotiationType is present, Tag 20073.
func (m NoRelatedSym) HasNegotiationType() bool {
return m.Has(tag.NegotiationType)
}
// HasCanRequote returns true if CanRequote is present, Tag 20076.
func (m NoRelatedSym) HasCanRequote() bool {
return m.Has(tag.CanRequote)
}
// HasCanCounter returns true if CanCounter is present, Tag 20156.
func (m NoRelatedSym) HasCanCounter() bool {
return m.Has(tag.CanCounter)
}
// HasRequoteTimePeriod returns true if RequoteTimePeriod is present, Tag 20083.
func (m NoRelatedSym) HasRequoteTimePeriod() bool {
return m.Has(tag.RequoteTimePeriod)
}
// HasOutstandingAmount returns true if OutstandingAmount is present, Tag 20130.
func (m NoRelatedSym) HasOutstandingAmount() bool {
return m.Has(tag.OutstandingAmount)
}
// HasCompositeSize returns true if CompositeSize is present, Tag 20132.
func (m NoRelatedSym) HasCompositeSize() bool {
return m.Has(tag.CompositeSize)
}
// HasInventoryAmount returns true if InventoryAmount is present, Tag 20134.
func (m NoRelatedSym) HasInventoryAmount() bool {
return m.Has(tag.InventoryAmount)
}
// HasInventorySpread returns true if InventorySpread is present, Tag 20136.
func (m NoRelatedSym) HasInventorySpread() bool {
return m.Has(tag.InventorySpread)
}
// HasLeadManagers returns true if LeadManagers is present, Tag 20138.
func (m NoRelatedSym) HasLeadManagers() bool {
return m.Has(tag.LeadManagers)
}
// HasRoundLot returns true if RoundLot is present, Tag 561.
func (m NoRelatedSym) HasRoundLot() bool {
return m.Has(tag.RoundLot)
}
// HasMinTradeVol returns true if MinTradeVol is present, Tag 562.
func (m NoRelatedSym) HasMinTradeVol() bool {
return m.Has(tag.MinTradeVol)
}
// HasNoCreditRating returns true if NoCreditRating is present, Tag 5114.
func (m NoRelatedSym) HasNoCreditRating() bool {
return m.Has(tag.NoCreditRating)
}
// HasNoCalcProvided returns true if NoCalcProvided is present, Tag 20140.
func (m NoRelatedSym) HasNoCalcProvided() bool {
return m.Has(tag.NoCalcProvided)
}
// HasBenchmarkSymbolSfx returns true if BenchmarkSymbolSfx is present, Tag 6633.
func (m NoRelatedSym) HasBenchmarkSymbolSfx() bool {
return m.Has(tag.BenchmarkSymbolSfx)
}
// HasBenchmarkSymbolAltSfx returns true if BenchmarkSymbolAltSfx is present, Tag 20165.
func (m NoRelatedSym) HasBenchmarkSymbolAltSfx() bool {
return m.Has(tag.BenchmarkSymbolAltSfx)
}
// HasTWBenchmarkSymbolSfx returns true if TWBenchmarkSymbolSfx is present, Tag 20153.
func (m NoRelatedSym) HasTWBenchmarkSymbolSfx() bool {
return m.Has(tag.TWBenchmarkSymbolSfx)
}
// HasTWBenchmarkSymbolAltSfx returns true if TWBenchmarkSymbolAltSfx is present, Tag 20167.
func (m NoRelatedSym) HasTWBenchmarkSymbolAltSfx() bool {
return m.Has(tag.TWBenchmarkSymbolAltSfx)
}
// HasTWBenchmarkSecurityID returns true if TWBenchmarkSecurityID is present, Tag 20149.
func (m NoRelatedSym) HasTWBenchmarkSecurityID() bool {
return m.Has(tag.TWBenchmarkSecurityID)
}
// HasTWBenchmarkSecurityIDSource returns true if TWBenchmarkSecurityIDSource is present, Tag 20150.
func (m NoRelatedSym) HasTWBenchmarkSecurityIDSource() bool {
return m.Has(tag.TWBenchmarkSecurityIDSource)
}
// HasBenchmarkSecurityAltID returns true if BenchmarkSecurityAltID is present, Tag 20157.
func (m NoRelatedSym) HasBenchmarkSecurityAltID() bool {
return m.Has(tag.BenchmarkSecurityAltID)
}
// HasBenchmarkSecurityAltIDSource returns true if BenchmarkSecurityAltIDSource is present, Tag 20158.
func (m NoRelatedSym) HasBenchmarkSecurityAltIDSource() bool {
return m.Has(tag.BenchmarkSecurityAltIDSource)
}
// HasTWBenchmarkSecurityAltID returns true if TWBenchmarkSecurityAltID is present, Tag 20161.
func (m NoRelatedSym) HasTWBenchmarkSecurityAltID() bool {
return m.Has(tag.TWBenchmarkSecurityAltID)
}
// HasTWBenchmarkSecurityAltIDSource returns true if TWBenchmarkSecurityAltIDSource is present, Tag 20162.
func (m NoRelatedSym) HasTWBenchmarkSecurityAltIDSource() bool {
return m.Has(tag.TWBenchmarkSecurityAltIDSource)
}
// HasTWBenchmarkPrice returns true if TWBenchmarkPrice is present, Tag 20171.
func (m NoRelatedSym) HasTWBenchmarkPrice() bool {
return m.Has(tag.TWBenchmarkPrice)
}
// HasTWBenchmarkPriceType returns true if TWBenchmarkPriceType is present, Tag 20172.
func (m NoRelatedSym) HasTWBenchmarkPriceType() bool {
return m.Has(tag.TWBenchmarkPriceType)
}
// HasDealerBenchmarkPrice returns true if DealerBenchmarkPrice is present, Tag 22572.
func (m NoRelatedSym) HasDealerBenchmarkPrice() bool {
return m.Has(tag.DealerBenchmarkPrice)
}
// HasDealerBenchmarkYield returns true if DealerBenchmarkYield is present, Tag 22574.
func (m NoRelatedSym) HasDealerBenchmarkYield() bool {
return m.Has(tag.DealerBenchmarkYield)
}
// HasUseDealerBenchmark returns true if UseDealerBenchmark is present, Tag 22576.
func (m NoRelatedSym) HasUseDealerBenchmark() bool {
return m.Has(tag.UseDealerBenchmark)
}
// HasInventoryTier returns true if InventoryTier is present, Tag 20145.
func (m NoRelatedSym) HasInventoryTier() bool {
return m.Has(tag.InventoryTier)
}
// HasPricingTier returns true if PricingTier is present, Tag 20147.
func (m NoRelatedSym) HasPricingTier() bool {
return m.Has(tag.PricingTier)
}
// HasFirstCouponPaymentDate returns true if FirstCouponPaymentDate is present, Tag 20175.
func (m NoRelatedSym) HasFirstCouponPaymentDate() bool {
return m.Has(tag.FirstCouponPaymentDate)
}
// HasNetMoney returns true if NetMoney is present, Tag 118.
func (m NoRelatedSym) HasNetMoney() bool {
return m.Has(tag.NetMoney)
}
// HasGrossTradeAmt returns true if GrossTradeAmt is present, Tag 381.
func (m NoRelatedSym) HasGrossTradeAmt() bool {
return m.Has(tag.GrossTradeAmt)
}
// HasNextCouponRate returns true if NextCouponRate is present, Tag 20179.
func (m NoRelatedSym) HasNextCouponRate() bool {
return m.Has(tag.NextCouponRate)
}
// HasTradeAxeIndicator returns true if TradeAxeIndicator is present, Tag 20232.
func (m NoRelatedSym) HasTradeAxeIndicator() bool {
return m.Has(tag.TradeAxeIndicator)
}
// HasExecutionFeeSchedule returns true if ExecutionFeeSchedule is present, Tag 20056.
func (m NoRelatedSym) HasExecutionFeeSchedule() bool {
return m.Has(tag.ExecutionFeeSchedule)
}
// HasExecutionFeeType returns true if ExecutionFeeType is present, Tag 20058.
func (m NoRelatedSym) HasExecutionFeeType() bool {
return m.Has(tag.ExecutionFeeType)
}
// HasExecutionFeeMarkup returns true if ExecutionFeeMarkup is present, Tag 20060.
func (m NoRelatedSym) HasExecutionFeeMarkup() bool {
return m.Has(tag.ExecutionFeeMarkup)
}
// HasExecutionFeeAmount returns true if ExecutionFeeAmount is present, Tag 20062.
func (m NoRelatedSym) HasExecutionFeeAmount() bool {
return m.Has(tag.ExecutionFeeAmount)
}
// HasNegotiationMethod returns true if NegotiationMethod is present, Tag 2115.
func (m NoRelatedSym) HasNegotiationMethod() bool {
return m.Has(tag.NegotiationMethod)
}
// HasNegotiationTime returns true if NegotiationTime is present, Tag 22639.
func (m NoRelatedSym) HasNegotiationTime() bool {
return m.Has(tag.NegotiationTime)
}
// HasIntermediated returns true if Intermediated is present, Tag 20262.
func (m NoRelatedSym) HasIntermediated() bool {
return m.Has(tag.Intermediated)
}
// HasCallDate returns true if CallDate is present, Tag 20222.
func (m NoRelatedSym) HasCallDate() bool {
return m.Has(tag.CallDate)
}
// HasCallType returns true if CallType is present, Tag 20223.
func (m NoRelatedSym) HasCallType() bool {
return m.Has(tag.CallType)
}
// HasCallPrice returns true if CallPrice is present, Tag 20266.
func (m NoRelatedSym) HasCallPrice() bool {
return m.Has(tag.CallPrice)
}
// HasFxRate returns true if FxRate is present, Tag 22630.
func (m NoRelatedSym) HasFxRate() bool {
return m.Has(tag.FxRate)
}
// HasSettlCurrency returns true if SettlCurrency is present, Tag 120.
func (m NoRelatedSym) HasSettlCurrency() bool {
return m.Has(tag.SettlCurrency)
}
// HasMarketSegment returns true if MarketSegment is present, Tag 20265.
func (m NoRelatedSym) HasMarketSegment() bool {
return m.Has(tag.MarketSegment)
}
// HasRegulatoryType returns true if RegulatoryType is present, Tag 20227.
func (m NoRelatedSym) HasRegulatoryType() bool {
return m.Has(tag.RegulatoryType)
}
// HasRationale returns true if Rationale is present, Tag 20306.
func (m NoRelatedSym) HasRationale() bool {
return m.Has(tag.Rationale)
}
// HasA2ATrade returns true if A2ATrade is present, Tag 22659.
func (m NoRelatedSym) HasA2ATrade() bool {
return m.Has(tag.A2ATrade)
}
// HasPreTradeAnonymity returns true if PreTradeAnonymity is present, Tag 1091.
func (m NoRelatedSym) HasPreTradeAnonymity() bool {
return m.Has(tag.PreTradeAnonymity)
}
// HasOnMTF returns true if OnMTF is present, Tag 23070.
func (m NoRelatedSym) HasOnMTF() bool {
return m.Has(tag.OnMTF)
}
// HasLiquidity returns true if Liquidity is present, Tag 23074.
func (m NoRelatedSym) HasLiquidity() bool {
return m.Has(tag.Liquidity)
}
// HasPreTrans returns true if PreTrans is present, Tag 23076.
func (m NoRelatedSym) HasPreTrans() bool {
return m.Has(tag.PreTrans)
}
// HasClientTradingCapacity returns true if ClientTradingCapacity is present, Tag 23060.
func (m NoRelatedSym) HasClientTradingCapacity() bool {
return m.Has(tag.ClientTradingCapacity)
}
// HasMiFIDMIC returns true if MiFIDMIC is present, Tag 23068.
func (m NoRelatedSym) HasMiFIDMIC() bool {
return m.Has(tag.MiFIDMIC)
}
// HasNoTrdRegPublications returns true if NoTrdRegPublications is present, Tag 2668.
func (m NoRelatedSym) HasNoTrdRegPublications() bool {
return m.Has(tag.NoTrdRegPublications)
}
// HasPortfolioTrade returns true if PortfolioTrade is present, Tag 23079.
func (m NoRelatedSym) HasPortfolioTrade() bool {
return m.Has(tag.PortfolioTrade)
}
// HasAlgoQuote returns true if AlgoQuote is present, Tag 20396.
func (m NoRelatedSym) HasAlgoQuote() bool {
return m.Has(tag.AlgoQuote)
}
// HasAlgoPrice returns true if AlgoPrice is present, Tag 20398.
func (m NoRelatedSym) HasAlgoPrice() bool {
return m.Has(tag.AlgoPrice)
}
// HasAlgoDV01 returns true if AlgoDV01 is present, Tag 20400.
func (m NoRelatedSym) HasAlgoDV01() bool {
return m.Has(tag.AlgoDV01)
}
// HasAlgoNet returns true if AlgoNet is present, Tag 20402.
func (m NoRelatedSym) HasAlgoNet() bool {
return m.Has(tag.AlgoNet)
}
// HasLimitCover returns true if LimitCover is present, Tag 20417.
func (m NoRelatedSym) HasLimitCover() bool {
return m.Has(tag.LimitCover)
}
// HasContextMidLevel returns true if ContextMidLevel is present, Tag 20637.
func (m NoRelatedSym) HasContextMidLevel() bool {
return m.Has(tag.ContextMidLevel)
}
// HasInContextLimit returns true if InContextLimit is present, Tag 20638.
func (m NoRelatedSym) HasInContextLimit() bool {
return m.Has(tag.InContextLimit)
}
// HasNetCross returns true if NetCross is present, Tag 20644.
func (m NoRelatedSym) HasNetCross() bool {
return m.Has(tag.NetCross)
}
// HasPriceSrcVal returns true if PriceSrcVal is present, Tag 23097.
func (m NoRelatedSym) HasPriceSrcVal() bool {
return m.Has(tag.PriceSrcVal)
}
// HasPriceSrcTime returns true if PriceSrcTime is present, Tag 23099.
func (m NoRelatedSym) HasPriceSrcTime() bool {
return m.Has(tag.PriceSrcTime)
}
// HasPriceSrcSide returns true if PriceSrcSide is present, Tag 23100.
func (m NoRelatedSym) HasPriceSrcSide() bool {
return m.Has(tag.PriceSrcSide)
}
// HasPriceSrcOffType returns true if PriceSrcOffType is present, Tag 23101.
func (m NoRelatedSym) HasPriceSrcOffType() bool {
return m.Has(tag.PriceSrcOffType)
}
// HasUniqueInQid returns true if UniqueInQid is present, Tag 20461.
func (m NoRelatedSym) HasUniqueInQid() bool {
return m.Has(tag.UniqueInQid)
}
// NoSecurityAltID is a repeating group element, Tag 454.
type NoSecurityAltID struct {
*quickfix.Group
}
// SetSecurityAltID sets SecurityAltID, Tag 455.
func (m NoSecurityAltID) SetSecurityAltID(v string) {
m.Set(field.NewSecurityAltID(v))
}
// SetSecurityAltIDSource sets SecurityAltIDSource, Tag 456.
func (m NoSecurityAltID) SetSecurityAltIDSource(v string) {
m.Set(field.NewSecurityAltIDSource(v))
}
// GetSecurityAltID gets SecurityAltID, Tag 455.
func (m NoSecurityAltID) GetSecurityAltID() (v string, err quickfix.MessageRejectError) {
var f field.SecurityAltIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetSecurityAltIDSource gets SecurityAltIDSource, Tag 456.
func (m NoSecurityAltID) GetSecurityAltIDSource() (v string, err quickfix.MessageRejectError) {
var f field.SecurityAltIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasSecurityAltID returns true if SecurityAltID is present, Tag 455.
func (m NoSecurityAltID) HasSecurityAltID() bool {
return m.Has(tag.SecurityAltID)
}
// HasSecurityAltIDSource returns true if SecurityAltIDSource is present, Tag 456.
func (m NoSecurityAltID) HasSecurityAltIDSource() bool {
return m.Has(tag.SecurityAltIDSource)
}
// NoSecurityAltIDRepeatingGroup is a repeating group, Tag 454.
type NoSecurityAltIDRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoSecurityAltIDRepeatingGroup returns an initialized, NoSecurityAltIDRepeatingGroup.
func NewNoSecurityAltIDRepeatingGroup() NoSecurityAltIDRepeatingGroup {
return NoSecurityAltIDRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoSecurityAltID,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.SecurityAltID),
quickfix.GroupElement(tag.SecurityAltIDSource),
},
),
}
}
// Add create and append a new NoSecurityAltID to this group.
func (m NoSecurityAltIDRepeatingGroup) Add() NoSecurityAltID {
g := m.RepeatingGroup.Add()
return NoSecurityAltID{g}
}
// Get returns the ith NoSecurityAltID in the NoSecurityAltIDRepeatinGroup.
func (m NoSecurityAltIDRepeatingGroup) Get(i int) NoSecurityAltID {
return NoSecurityAltID{m.RepeatingGroup.Get(i)}
}
// NoEvents is a repeating group element, Tag 864.
type NoEvents struct {
*quickfix.Group
}
// SetEventType sets EventType, Tag 865.
func (m NoEvents) SetEventType(v enum.EventType) {
m.Set(field.NewEventType(v))
}
// SetEventDate sets EventDate, Tag 866.
func (m NoEvents) SetEventDate(v string) {
m.Set(field.NewEventDate(v))
}
// SetEventPx sets EventPx, Tag 867.
func (m NoEvents) SetEventPx(value decimal.Decimal, scale int32) {
m.Set(field.NewEventPx(value, scale))
}
// SetEventText sets EventText, Tag 868.
func (m NoEvents) SetEventText(v string) {
m.Set(field.NewEventText(v))
}
// GetEventType gets EventType, Tag 865.
func (m NoEvents) GetEventType() (v enum.EventType, err quickfix.MessageRejectError) {
var f field.EventTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEventDate gets EventDate, Tag 866.
func (m NoEvents) GetEventDate() (v string, err quickfix.MessageRejectError) {
var f field.EventDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEventPx gets EventPx, Tag 867.
func (m NoEvents) GetEventPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.EventPxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEventText gets EventText, Tag 868.
func (m NoEvents) GetEventText() (v string, err quickfix.MessageRejectError) {
var f field.EventTextField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasEventType returns true if EventType is present, Tag 865.
func (m NoEvents) HasEventType() bool {
return m.Has(tag.EventType)
}
// HasEventDate returns true if EventDate is present, Tag 866.
func (m NoEvents) HasEventDate() bool {
return m.Has(tag.EventDate)
}
// HasEventPx returns true if EventPx is present, Tag 867.
func (m NoEvents) HasEventPx() bool {
return m.Has(tag.EventPx)
}
// HasEventText returns true if EventText is present, Tag 868.
func (m NoEvents) HasEventText() bool {
return m.Has(tag.EventText)
}
// NoEventsRepeatingGroup is a repeating group, Tag 864.
type NoEventsRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoEventsRepeatingGroup returns an initialized, NoEventsRepeatingGroup.
func NewNoEventsRepeatingGroup() NoEventsRepeatingGroup {
return NoEventsRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoEvents,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.EventType),
quickfix.GroupElement(tag.EventDate),
quickfix.GroupElement(tag.EventPx),
quickfix.GroupElement(tag.EventText),
},
),
}
}
// Add create and append a new NoEvents to this group.
func (m NoEventsRepeatingGroup) Add() NoEvents {
g := m.RepeatingGroup.Add()
return NoEvents{g}
}
// Get returns the ith NoEvents in the NoEventsRepeatinGroup.
func (m NoEventsRepeatingGroup) Get(i int) NoEvents {
return NoEvents{m.RepeatingGroup.Get(i)}
}
// NoUnderlyings is a repeating group element, Tag 711.
type NoUnderlyings struct {
*quickfix.Group
}
// SetUnderlyingSymbol sets UnderlyingSymbol, Tag 311.
func (m NoUnderlyings) SetUnderlyingSymbol(v string) {
m.Set(field.NewUnderlyingSymbol(v))
}
// SetUnderlyingSymbolSfx sets UnderlyingSymbolSfx, Tag 312.
func (m NoUnderlyings) SetUnderlyingSymbolSfx(v string) {
m.Set(field.NewUnderlyingSymbolSfx(v))
}
// SetUnderlyingSecurityID sets UnderlyingSecurityID, Tag 309.
func (m NoUnderlyings) SetUnderlyingSecurityID(v string) {
m.Set(field.NewUnderlyingSecurityID(v))
}
// SetUnderlyingSecurityIDSource sets UnderlyingSecurityIDSource, Tag 305.
func (m NoUnderlyings) SetUnderlyingSecurityIDSource(v string) {
m.Set(field.NewUnderlyingSecurityIDSource(v))
}
// SetNoUnderlyingSecurityAltID sets NoUnderlyingSecurityAltID, Tag 457.
func (m NoUnderlyings) SetNoUnderlyingSecurityAltID(f NoUnderlyingSecurityAltIDRepeatingGroup) {
m.SetGroup(f)
}
// SetUnderlyingProduct sets UnderlyingProduct, Tag 462.
func (m NoUnderlyings) SetUnderlyingProduct(v int) {
m.Set(field.NewUnderlyingProduct(v))
}
// SetUnderlyingCFICode sets UnderlyingCFICode, Tag 463.
func (m NoUnderlyings) SetUnderlyingCFICode(v string) {
m.Set(field.NewUnderlyingCFICode(v))
}
// SetUnderlyingSecurityType sets UnderlyingSecurityType, Tag 310.
func (m NoUnderlyings) SetUnderlyingSecurityType(v string) {
m.Set(field.NewUnderlyingSecurityType(v))
}
// SetUnderlyingSecuritySubType sets UnderlyingSecuritySubType, Tag 763.
func (m NoUnderlyings) SetUnderlyingSecuritySubType(v string) {
m.Set(field.NewUnderlyingSecuritySubType(v))
}
// SetUnderlyingMaturityMonthYear sets UnderlyingMaturityMonthYear, Tag 313.
func (m NoUnderlyings) SetUnderlyingMaturityMonthYear(v string) {
m.Set(field.NewUnderlyingMaturityMonthYear(v))
}
// SetUnderlyingMaturityDate sets UnderlyingMaturityDate, Tag 542.
func (m NoUnderlyings) SetUnderlyingMaturityDate(v string) {
m.Set(field.NewUnderlyingMaturityDate(v))
}
// SetUnderlyingCouponPaymentDate sets UnderlyingCouponPaymentDate, Tag 241.
func (m NoUnderlyings) SetUnderlyingCouponPaymentDate(v string) {
m.Set(field.NewUnderlyingCouponPaymentDate(v))
}
// SetUnderlyingIssueDate sets UnderlyingIssueDate, Tag 242.
func (m NoUnderlyings) SetUnderlyingIssueDate(v string) {
m.Set(field.NewUnderlyingIssueDate(v))
}
// SetUnderlyingRepoCollateralSecurityType sets UnderlyingRepoCollateralSecurityType, Tag 243.
func (m NoUnderlyings) SetUnderlyingRepoCollateralSecurityType(v int) {
m.Set(field.NewUnderlyingRepoCollateralSecurityType(v))
}
// SetUnderlyingRepurchaseTerm sets UnderlyingRepurchaseTerm, Tag 244.
func (m NoUnderlyings) SetUnderlyingRepurchaseTerm(v int) {
m.Set(field.NewUnderlyingRepurchaseTerm(v))
}
// SetUnderlyingRepurchaseRate sets UnderlyingRepurchaseRate, Tag 245.
func (m NoUnderlyings) SetUnderlyingRepurchaseRate(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingRepurchaseRate(value, scale))
}
// SetUnderlyingFactor sets UnderlyingFactor, Tag 246.
func (m NoUnderlyings) SetUnderlyingFactor(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingFactor(value, scale))
}
// SetUnderlyingCreditRating sets UnderlyingCreditRating, Tag 256.
func (m NoUnderlyings) SetUnderlyingCreditRating(v string) {
m.Set(field.NewUnderlyingCreditRating(v))
}
// SetUnderlyingInstrRegistry sets UnderlyingInstrRegistry, Tag 595.
func (m NoUnderlyings) SetUnderlyingInstrRegistry(v string) {
m.Set(field.NewUnderlyingInstrRegistry(v))
}
// SetUnderlyingCountryOfIssue sets UnderlyingCountryOfIssue, Tag 592.
func (m NoUnderlyings) SetUnderlyingCountryOfIssue(v string) {
m.Set(field.NewUnderlyingCountryOfIssue(v))
}
// SetUnderlyingStateOrProvinceOfIssue sets UnderlyingStateOrProvinceOfIssue, Tag 593.
func (m NoUnderlyings) SetUnderlyingStateOrProvinceOfIssue(v string) {
m.Set(field.NewUnderlyingStateOrProvinceOfIssue(v))
}
// SetUnderlyingLocaleOfIssue sets UnderlyingLocaleOfIssue, Tag 594.
func (m NoUnderlyings) SetUnderlyingLocaleOfIssue(v string) {
m.Set(field.NewUnderlyingLocaleOfIssue(v))
}
// SetUnderlyingRedemptionDate sets UnderlyingRedemptionDate, Tag 247.
func (m NoUnderlyings) SetUnderlyingRedemptionDate(v string) {
m.Set(field.NewUnderlyingRedemptionDate(v))
}
// SetUnderlyingStrikePrice sets UnderlyingStrikePrice, Tag 316.
func (m NoUnderlyings) SetUnderlyingStrikePrice(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingStrikePrice(value, scale))
}
// SetUnderlyingStrikeCurrency sets UnderlyingStrikeCurrency, Tag 941.
func (m NoUnderlyings) SetUnderlyingStrikeCurrency(v string) {
m.Set(field.NewUnderlyingStrikeCurrency(v))
}
// SetUnderlyingOptAttribute sets UnderlyingOptAttribute, Tag 317.
func (m NoUnderlyings) SetUnderlyingOptAttribute(v string) {
m.Set(field.NewUnderlyingOptAttribute(v))
}
// SetUnderlyingContractMultiplier sets UnderlyingContractMultiplier, Tag 436.
func (m NoUnderlyings) SetUnderlyingContractMultiplier(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingContractMultiplier(value, scale))
}
// SetUnderlyingCouponRate sets UnderlyingCouponRate, Tag 435.
func (m NoUnderlyings) SetUnderlyingCouponRate(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingCouponRate(value, scale))
}
// SetUnderlyingSecurityExchange sets UnderlyingSecurityExchange, Tag 308.
func (m NoUnderlyings) SetUnderlyingSecurityExchange(v string) {
m.Set(field.NewUnderlyingSecurityExchange(v))
}
// SetUnderlyingIssuer sets UnderlyingIssuer, Tag 306.
func (m NoUnderlyings) SetUnderlyingIssuer(v string) {
m.Set(field.NewUnderlyingIssuer(v))
}
// SetEncodedUnderlyingIssuerLen sets EncodedUnderlyingIssuerLen, Tag 362.
func (m NoUnderlyings) SetEncodedUnderlyingIssuerLen(v int) {
m.Set(field.NewEncodedUnderlyingIssuerLen(v))
}
// SetEncodedUnderlyingIssuer sets EncodedUnderlyingIssuer, Tag 363.
func (m NoUnderlyings) SetEncodedUnderlyingIssuer(v string) {
m.Set(field.NewEncodedUnderlyingIssuer(v))
}
// SetUnderlyingSecurityDesc sets UnderlyingSecurityDesc, Tag 307.
func (m NoUnderlyings) SetUnderlyingSecurityDesc(v string) {
m.Set(field.NewUnderlyingSecurityDesc(v))
}
// SetEncodedUnderlyingSecurityDescLen sets EncodedUnderlyingSecurityDescLen, Tag 364.
func (m NoUnderlyings) SetEncodedUnderlyingSecurityDescLen(v int) {
m.Set(field.NewEncodedUnderlyingSecurityDescLen(v))
}
// SetEncodedUnderlyingSecurityDesc sets EncodedUnderlyingSecurityDesc, Tag 365.
func (m NoUnderlyings) SetEncodedUnderlyingSecurityDesc(v string) {
m.Set(field.NewEncodedUnderlyingSecurityDesc(v))
}
// SetUnderlyingCPProgram sets UnderlyingCPProgram, Tag 877.
func (m NoUnderlyings) SetUnderlyingCPProgram(v string) {
m.Set(field.NewUnderlyingCPProgram(v))
}
// SetUnderlyingCPRegType sets UnderlyingCPRegType, Tag 878.
func (m NoUnderlyings) SetUnderlyingCPRegType(v string) {
m.Set(field.NewUnderlyingCPRegType(v))
}
// SetUnderlyingCurrency sets UnderlyingCurrency, Tag 318.
func (m NoUnderlyings) SetUnderlyingCurrency(v string) {
m.Set(field.NewUnderlyingCurrency(v))
}
// SetUnderlyingQty sets UnderlyingQty, Tag 879.
func (m NoUnderlyings) SetUnderlyingQty(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingQty(value, scale))
}
// SetUnderlyingPx sets UnderlyingPx, Tag 810.
func (m NoUnderlyings) SetUnderlyingPx(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingPx(value, scale))
}
// SetUnderlyingDirtyPrice sets UnderlyingDirtyPrice, Tag 882.
func (m NoUnderlyings) SetUnderlyingDirtyPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingDirtyPrice(value, scale))
}
// SetUnderlyingEndPrice sets UnderlyingEndPrice, Tag 883.
func (m NoUnderlyings) SetUnderlyingEndPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingEndPrice(value, scale))
}
// SetUnderlyingStartValue sets UnderlyingStartValue, Tag 884.
func (m NoUnderlyings) SetUnderlyingStartValue(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingStartValue(value, scale))
}
// SetUnderlyingCurrentValue sets UnderlyingCurrentValue, Tag 885.
func (m NoUnderlyings) SetUnderlyingCurrentValue(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingCurrentValue(value, scale))
}
// SetUnderlyingEndValue sets UnderlyingEndValue, Tag 886.
func (m NoUnderlyings) SetUnderlyingEndValue(value decimal.Decimal, scale int32) {
m.Set(field.NewUnderlyingEndValue(value, scale))
}
// SetNoUnderlyingStips sets NoUnderlyingStips, Tag 887.
func (m NoUnderlyings) SetNoUnderlyingStips(f NoUnderlyingStipsRepeatingGroup) {
m.SetGroup(f)
}
// GetUnderlyingSymbol gets UnderlyingSymbol, Tag 311.
func (m NoUnderlyings) GetUnderlyingSymbol() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSymbolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSymbolSfx gets UnderlyingSymbolSfx, Tag 312.
func (m NoUnderlyings) GetUnderlyingSymbolSfx() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityID gets UnderlyingSecurityID, Tag 309.
func (m NoUnderlyings) GetUnderlyingSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityIDSource gets UnderlyingSecurityIDSource, Tag 305.
func (m NoUnderlyings) GetUnderlyingSecurityIDSource() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoUnderlyingSecurityAltID gets NoUnderlyingSecurityAltID, Tag 457.
func (m NoUnderlyings) GetNoUnderlyingSecurityAltID() (NoUnderlyingSecurityAltIDRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoUnderlyingSecurityAltIDRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetUnderlyingProduct gets UnderlyingProduct, Tag 462.
func (m NoUnderlyings) GetUnderlyingProduct() (v int, err quickfix.MessageRejectError) {
var f field.UnderlyingProductField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCFICode gets UnderlyingCFICode, Tag 463.
func (m NoUnderlyings) GetUnderlyingCFICode() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCFICodeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityType gets UnderlyingSecurityType, Tag 310.
func (m NoUnderlyings) GetUnderlyingSecurityType() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecuritySubType gets UnderlyingSecuritySubType, Tag 763.
func (m NoUnderlyings) GetUnderlyingSecuritySubType() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecuritySubTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingMaturityMonthYear gets UnderlyingMaturityMonthYear, Tag 313.
func (m NoUnderlyings) GetUnderlyingMaturityMonthYear() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingMaturityMonthYearField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingMaturityDate gets UnderlyingMaturityDate, Tag 542.
func (m NoUnderlyings) GetUnderlyingMaturityDate() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingMaturityDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCouponPaymentDate gets UnderlyingCouponPaymentDate, Tag 241.
func (m NoUnderlyings) GetUnderlyingCouponPaymentDate() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCouponPaymentDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingIssueDate gets UnderlyingIssueDate, Tag 242.
func (m NoUnderlyings) GetUnderlyingIssueDate() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingIssueDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRepoCollateralSecurityType gets UnderlyingRepoCollateralSecurityType, Tag 243.
func (m NoUnderlyings) GetUnderlyingRepoCollateralSecurityType() (v int, err quickfix.MessageRejectError) {
var f field.UnderlyingRepoCollateralSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRepurchaseTerm gets UnderlyingRepurchaseTerm, Tag 244.
func (m NoUnderlyings) GetUnderlyingRepurchaseTerm() (v int, err quickfix.MessageRejectError) {
var f field.UnderlyingRepurchaseTermField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRepurchaseRate gets UnderlyingRepurchaseRate, Tag 245.
func (m NoUnderlyings) GetUnderlyingRepurchaseRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingRepurchaseRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingFactor gets UnderlyingFactor, Tag 246.
func (m NoUnderlyings) GetUnderlyingFactor() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingFactorField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCreditRating gets UnderlyingCreditRating, Tag 256.
func (m NoUnderlyings) GetUnderlyingCreditRating() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCreditRatingField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingInstrRegistry gets UnderlyingInstrRegistry, Tag 595.
func (m NoUnderlyings) GetUnderlyingInstrRegistry() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingInstrRegistryField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCountryOfIssue gets UnderlyingCountryOfIssue, Tag 592.
func (m NoUnderlyings) GetUnderlyingCountryOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCountryOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingStateOrProvinceOfIssue gets UnderlyingStateOrProvinceOfIssue, Tag 593.
func (m NoUnderlyings) GetUnderlyingStateOrProvinceOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingStateOrProvinceOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingLocaleOfIssue gets UnderlyingLocaleOfIssue, Tag 594.
func (m NoUnderlyings) GetUnderlyingLocaleOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingLocaleOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingRedemptionDate gets UnderlyingRedemptionDate, Tag 247.
func (m NoUnderlyings) GetUnderlyingRedemptionDate() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingRedemptionDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingStrikePrice gets UnderlyingStrikePrice, Tag 316.
func (m NoUnderlyings) GetUnderlyingStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingStrikePriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingStrikeCurrency gets UnderlyingStrikeCurrency, Tag 941.
func (m NoUnderlyings) GetUnderlyingStrikeCurrency() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingStrikeCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingOptAttribute gets UnderlyingOptAttribute, Tag 317.
func (m NoUnderlyings) GetUnderlyingOptAttribute() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingOptAttributeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingContractMultiplier gets UnderlyingContractMultiplier, Tag 436.
func (m NoUnderlyings) GetUnderlyingContractMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingContractMultiplierField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCouponRate gets UnderlyingCouponRate, Tag 435.
func (m NoUnderlyings) GetUnderlyingCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingCouponRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityExchange gets UnderlyingSecurityExchange, Tag 308.
func (m NoUnderlyings) GetUnderlyingSecurityExchange() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityExchangeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingIssuer gets UnderlyingIssuer, Tag 306.
func (m NoUnderlyings) GetUnderlyingIssuer() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingIssuerLen gets EncodedUnderlyingIssuerLen, Tag 362.
func (m NoUnderlyings) GetEncodedUnderlyingIssuerLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedUnderlyingIssuerLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingIssuer gets EncodedUnderlyingIssuer, Tag 363.
func (m NoUnderlyings) GetEncodedUnderlyingIssuer() (v string, err quickfix.MessageRejectError) {
var f field.EncodedUnderlyingIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityDesc gets UnderlyingSecurityDesc, Tag 307.
func (m NoUnderlyings) GetUnderlyingSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingSecurityDescLen gets EncodedUnderlyingSecurityDescLen, Tag 364.
func (m NoUnderlyings) GetEncodedUnderlyingSecurityDescLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedUnderlyingSecurityDescLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedUnderlyingSecurityDesc gets EncodedUnderlyingSecurityDesc, Tag 365.
func (m NoUnderlyings) GetEncodedUnderlyingSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.EncodedUnderlyingSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCPProgram gets UnderlyingCPProgram, Tag 877.
func (m NoUnderlyings) GetUnderlyingCPProgram() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCPProgramField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCPRegType gets UnderlyingCPRegType, Tag 878.
func (m NoUnderlyings) GetUnderlyingCPRegType() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCPRegTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCurrency gets UnderlyingCurrency, Tag 318.
func (m NoUnderlyings) GetUnderlyingCurrency() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingQty gets UnderlyingQty, Tag 879.
func (m NoUnderlyings) GetUnderlyingQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingQtyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingPx gets UnderlyingPx, Tag 810.
func (m NoUnderlyings) GetUnderlyingPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingPxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingDirtyPrice gets UnderlyingDirtyPrice, Tag 882.
func (m NoUnderlyings) GetUnderlyingDirtyPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingDirtyPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingEndPrice gets UnderlyingEndPrice, Tag 883.
func (m NoUnderlyings) GetUnderlyingEndPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingEndPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingStartValue gets UnderlyingStartValue, Tag 884.
func (m NoUnderlyings) GetUnderlyingStartValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingStartValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingCurrentValue gets UnderlyingCurrentValue, Tag 885.
func (m NoUnderlyings) GetUnderlyingCurrentValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingCurrentValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingEndValue gets UnderlyingEndValue, Tag 886.
func (m NoUnderlyings) GetUnderlyingEndValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.UnderlyingEndValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoUnderlyingStips gets NoUnderlyingStips, Tag 887.
func (m NoUnderlyings) GetNoUnderlyingStips() (NoUnderlyingStipsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoUnderlyingStipsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// HasUnderlyingSymbol returns true if UnderlyingSymbol is present, Tag 311.
func (m NoUnderlyings) HasUnderlyingSymbol() bool {
return m.Has(tag.UnderlyingSymbol)
}
// HasUnderlyingSymbolSfx returns true if UnderlyingSymbolSfx is present, Tag 312.
func (m NoUnderlyings) HasUnderlyingSymbolSfx() bool {
return m.Has(tag.UnderlyingSymbolSfx)
}
// HasUnderlyingSecurityID returns true if UnderlyingSecurityID is present, Tag 309.
func (m NoUnderlyings) HasUnderlyingSecurityID() bool {
return m.Has(tag.UnderlyingSecurityID)
}
// HasUnderlyingSecurityIDSource returns true if UnderlyingSecurityIDSource is present, Tag 305.
func (m NoUnderlyings) HasUnderlyingSecurityIDSource() bool {
return m.Has(tag.UnderlyingSecurityIDSource)
}
// HasNoUnderlyingSecurityAltID returns true if NoUnderlyingSecurityAltID is present, Tag 457.
func (m NoUnderlyings) HasNoUnderlyingSecurityAltID() bool {
return m.Has(tag.NoUnderlyingSecurityAltID)
}
// HasUnderlyingProduct returns true if UnderlyingProduct is present, Tag 462.
func (m NoUnderlyings) HasUnderlyingProduct() bool {
return m.Has(tag.UnderlyingProduct)
}
// HasUnderlyingCFICode returns true if UnderlyingCFICode is present, Tag 463.
func (m NoUnderlyings) HasUnderlyingCFICode() bool {
return m.Has(tag.UnderlyingCFICode)
}
// HasUnderlyingSecurityType returns true if UnderlyingSecurityType is present, Tag 310.
func (m NoUnderlyings) HasUnderlyingSecurityType() bool {
return m.Has(tag.UnderlyingSecurityType)
}
// HasUnderlyingSecuritySubType returns true if UnderlyingSecuritySubType is present, Tag 763.
func (m NoUnderlyings) HasUnderlyingSecuritySubType() bool {
return m.Has(tag.UnderlyingSecuritySubType)
}
// HasUnderlyingMaturityMonthYear returns true if UnderlyingMaturityMonthYear is present, Tag 313.
func (m NoUnderlyings) HasUnderlyingMaturityMonthYear() bool {
return m.Has(tag.UnderlyingMaturityMonthYear)
}
// HasUnderlyingMaturityDate returns true if UnderlyingMaturityDate is present, Tag 542.
func (m NoUnderlyings) HasUnderlyingMaturityDate() bool {
return m.Has(tag.UnderlyingMaturityDate)
}
// HasUnderlyingCouponPaymentDate returns true if UnderlyingCouponPaymentDate is present, Tag 241.
func (m NoUnderlyings) HasUnderlyingCouponPaymentDate() bool {
return m.Has(tag.UnderlyingCouponPaymentDate)
}
// HasUnderlyingIssueDate returns true if UnderlyingIssueDate is present, Tag 242.
func (m NoUnderlyings) HasUnderlyingIssueDate() bool {
return m.Has(tag.UnderlyingIssueDate)
}
// HasUnderlyingRepoCollateralSecurityType returns true if UnderlyingRepoCollateralSecurityType is present, Tag 243.
func (m NoUnderlyings) HasUnderlyingRepoCollateralSecurityType() bool {
return m.Has(tag.UnderlyingRepoCollateralSecurityType)
}
// HasUnderlyingRepurchaseTerm returns true if UnderlyingRepurchaseTerm is present, Tag 244.
func (m NoUnderlyings) HasUnderlyingRepurchaseTerm() bool {
return m.Has(tag.UnderlyingRepurchaseTerm)
}
// HasUnderlyingRepurchaseRate returns true if UnderlyingRepurchaseRate is present, Tag 245.
func (m NoUnderlyings) HasUnderlyingRepurchaseRate() bool {
return m.Has(tag.UnderlyingRepurchaseRate)
}
// HasUnderlyingFactor returns true if UnderlyingFactor is present, Tag 246.
func (m NoUnderlyings) HasUnderlyingFactor() bool {
return m.Has(tag.UnderlyingFactor)
}
// HasUnderlyingCreditRating returns true if UnderlyingCreditRating is present, Tag 256.
func (m NoUnderlyings) HasUnderlyingCreditRating() bool {
return m.Has(tag.UnderlyingCreditRating)
}
// HasUnderlyingInstrRegistry returns true if UnderlyingInstrRegistry is present, Tag 595.
func (m NoUnderlyings) HasUnderlyingInstrRegistry() bool {
return m.Has(tag.UnderlyingInstrRegistry)
}
// HasUnderlyingCountryOfIssue returns true if UnderlyingCountryOfIssue is present, Tag 592.
func (m NoUnderlyings) HasUnderlyingCountryOfIssue() bool {
return m.Has(tag.UnderlyingCountryOfIssue)
}
// HasUnderlyingStateOrProvinceOfIssue returns true if UnderlyingStateOrProvinceOfIssue is present, Tag 593.
func (m NoUnderlyings) HasUnderlyingStateOrProvinceOfIssue() bool {
return m.Has(tag.UnderlyingStateOrProvinceOfIssue)
}
// HasUnderlyingLocaleOfIssue returns true if UnderlyingLocaleOfIssue is present, Tag 594.
func (m NoUnderlyings) HasUnderlyingLocaleOfIssue() bool {
return m.Has(tag.UnderlyingLocaleOfIssue)
}
// HasUnderlyingRedemptionDate returns true if UnderlyingRedemptionDate is present, Tag 247.
func (m NoUnderlyings) HasUnderlyingRedemptionDate() bool {
return m.Has(tag.UnderlyingRedemptionDate)
}
// HasUnderlyingStrikePrice returns true if UnderlyingStrikePrice is present, Tag 316.
func (m NoUnderlyings) HasUnderlyingStrikePrice() bool {
return m.Has(tag.UnderlyingStrikePrice)
}
// HasUnderlyingStrikeCurrency returns true if UnderlyingStrikeCurrency is present, Tag 941.
func (m NoUnderlyings) HasUnderlyingStrikeCurrency() bool {
return m.Has(tag.UnderlyingStrikeCurrency)
}
// HasUnderlyingOptAttribute returns true if UnderlyingOptAttribute is present, Tag 317.
func (m NoUnderlyings) HasUnderlyingOptAttribute() bool {
return m.Has(tag.UnderlyingOptAttribute)
}
// HasUnderlyingContractMultiplier returns true if UnderlyingContractMultiplier is present, Tag 436.
func (m NoUnderlyings) HasUnderlyingContractMultiplier() bool {
return m.Has(tag.UnderlyingContractMultiplier)
}
// HasUnderlyingCouponRate returns true if UnderlyingCouponRate is present, Tag 435.
func (m NoUnderlyings) HasUnderlyingCouponRate() bool {
return m.Has(tag.UnderlyingCouponRate)
}
// HasUnderlyingSecurityExchange returns true if UnderlyingSecurityExchange is present, Tag 308.
func (m NoUnderlyings) HasUnderlyingSecurityExchange() bool {
return m.Has(tag.UnderlyingSecurityExchange)
}
// HasUnderlyingIssuer returns true if UnderlyingIssuer is present, Tag 306.
func (m NoUnderlyings) HasUnderlyingIssuer() bool {
return m.Has(tag.UnderlyingIssuer)
}
// HasEncodedUnderlyingIssuerLen returns true if EncodedUnderlyingIssuerLen is present, Tag 362.
func (m NoUnderlyings) HasEncodedUnderlyingIssuerLen() bool {
return m.Has(tag.EncodedUnderlyingIssuerLen)
}
// HasEncodedUnderlyingIssuer returns true if EncodedUnderlyingIssuer is present, Tag 363.
func (m NoUnderlyings) HasEncodedUnderlyingIssuer() bool {
return m.Has(tag.EncodedUnderlyingIssuer)
}
// HasUnderlyingSecurityDesc returns true if UnderlyingSecurityDesc is present, Tag 307.
func (m NoUnderlyings) HasUnderlyingSecurityDesc() bool {
return m.Has(tag.UnderlyingSecurityDesc)
}
// HasEncodedUnderlyingSecurityDescLen returns true if EncodedUnderlyingSecurityDescLen is present, Tag 364.
func (m NoUnderlyings) HasEncodedUnderlyingSecurityDescLen() bool {
return m.Has(tag.EncodedUnderlyingSecurityDescLen)
}
// HasEncodedUnderlyingSecurityDesc returns true if EncodedUnderlyingSecurityDesc is present, Tag 365.
func (m NoUnderlyings) HasEncodedUnderlyingSecurityDesc() bool {
return m.Has(tag.EncodedUnderlyingSecurityDesc)
}
// HasUnderlyingCPProgram returns true if UnderlyingCPProgram is present, Tag 877.
func (m NoUnderlyings) HasUnderlyingCPProgram() bool {
return m.Has(tag.UnderlyingCPProgram)
}
// HasUnderlyingCPRegType returns true if UnderlyingCPRegType is present, Tag 878.
func (m NoUnderlyings) HasUnderlyingCPRegType() bool {
return m.Has(tag.UnderlyingCPRegType)
}
// HasUnderlyingCurrency returns true if UnderlyingCurrency is present, Tag 318.
func (m NoUnderlyings) HasUnderlyingCurrency() bool {
return m.Has(tag.UnderlyingCurrency)
}
// HasUnderlyingQty returns true if UnderlyingQty is present, Tag 879.
func (m NoUnderlyings) HasUnderlyingQty() bool {
return m.Has(tag.UnderlyingQty)
}
// HasUnderlyingPx returns true if UnderlyingPx is present, Tag 810.
func (m NoUnderlyings) HasUnderlyingPx() bool {
return m.Has(tag.UnderlyingPx)
}
// HasUnderlyingDirtyPrice returns true if UnderlyingDirtyPrice is present, Tag 882.
func (m NoUnderlyings) HasUnderlyingDirtyPrice() bool {
return m.Has(tag.UnderlyingDirtyPrice)
}
// HasUnderlyingEndPrice returns true if UnderlyingEndPrice is present, Tag 883.
func (m NoUnderlyings) HasUnderlyingEndPrice() bool {
return m.Has(tag.UnderlyingEndPrice)
}
// HasUnderlyingStartValue returns true if UnderlyingStartValue is present, Tag 884.
func (m NoUnderlyings) HasUnderlyingStartValue() bool {
return m.Has(tag.UnderlyingStartValue)
}
// HasUnderlyingCurrentValue returns true if UnderlyingCurrentValue is present, Tag 885.
func (m NoUnderlyings) HasUnderlyingCurrentValue() bool {
return m.Has(tag.UnderlyingCurrentValue)
}
// HasUnderlyingEndValue returns true if UnderlyingEndValue is present, Tag 886.
func (m NoUnderlyings) HasUnderlyingEndValue() bool {
return m.Has(tag.UnderlyingEndValue)
}
// HasNoUnderlyingStips returns true if NoUnderlyingStips is present, Tag 887.
func (m NoUnderlyings) HasNoUnderlyingStips() bool {
return m.Has(tag.NoUnderlyingStips)
}
// NoUnderlyingSecurityAltID is a repeating group element, Tag 457.
type NoUnderlyingSecurityAltID struct {
*quickfix.Group
}
// SetUnderlyingSecurityAltID sets UnderlyingSecurityAltID, Tag 458.
func (m NoUnderlyingSecurityAltID) SetUnderlyingSecurityAltID(v string) {
m.Set(field.NewUnderlyingSecurityAltID(v))
}
// SetUnderlyingSecurityAltIDSource sets UnderlyingSecurityAltIDSource, Tag 459.
func (m NoUnderlyingSecurityAltID) SetUnderlyingSecurityAltIDSource(v string) {
m.Set(field.NewUnderlyingSecurityAltIDSource(v))
}
// GetUnderlyingSecurityAltID gets UnderlyingSecurityAltID, Tag 458.
func (m NoUnderlyingSecurityAltID) GetUnderlyingSecurityAltID() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityAltIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingSecurityAltIDSource gets UnderlyingSecurityAltIDSource, Tag 459.
func (m NoUnderlyingSecurityAltID) GetUnderlyingSecurityAltIDSource() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingSecurityAltIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasUnderlyingSecurityAltID returns true if UnderlyingSecurityAltID is present, Tag 458.
func (m NoUnderlyingSecurityAltID) HasUnderlyingSecurityAltID() bool {
return m.Has(tag.UnderlyingSecurityAltID)
}
// HasUnderlyingSecurityAltIDSource returns true if UnderlyingSecurityAltIDSource is present, Tag 459.
func (m NoUnderlyingSecurityAltID) HasUnderlyingSecurityAltIDSource() bool {
return m.Has(tag.UnderlyingSecurityAltIDSource)
}
// NoUnderlyingSecurityAltIDRepeatingGroup is a repeating group, Tag 457.
type NoUnderlyingSecurityAltIDRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoUnderlyingSecurityAltIDRepeatingGroup returns an initialized, NoUnderlyingSecurityAltIDRepeatingGroup.
func NewNoUnderlyingSecurityAltIDRepeatingGroup() NoUnderlyingSecurityAltIDRepeatingGroup {
return NoUnderlyingSecurityAltIDRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoUnderlyingSecurityAltID,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.UnderlyingSecurityAltID),
quickfix.GroupElement(tag.UnderlyingSecurityAltIDSource),
},
),
}
}
// Add create and append a new NoUnderlyingSecurityAltID to this group.
func (m NoUnderlyingSecurityAltIDRepeatingGroup) Add() NoUnderlyingSecurityAltID {
g := m.RepeatingGroup.Add()
return NoUnderlyingSecurityAltID{g}
}
// Get returns the ith NoUnderlyingSecurityAltID in the NoUnderlyingSecurityAltIDRepeatinGroup.
func (m NoUnderlyingSecurityAltIDRepeatingGroup) Get(i int) NoUnderlyingSecurityAltID {
return NoUnderlyingSecurityAltID{m.RepeatingGroup.Get(i)}
}
// NoUnderlyingStips is a repeating group element, Tag 887.
type NoUnderlyingStips struct {
*quickfix.Group
}
// SetUnderlyingStipType sets UnderlyingStipType, Tag 888.
func (m NoUnderlyingStips) SetUnderlyingStipType(v string) {
m.Set(field.NewUnderlyingStipType(v))
}
// SetUnderlyingStipValue sets UnderlyingStipValue, Tag 889.
func (m NoUnderlyingStips) SetUnderlyingStipValue(v string) {
m.Set(field.NewUnderlyingStipValue(v))
}
// GetUnderlyingStipType gets UnderlyingStipType, Tag 888.
func (m NoUnderlyingStips) GetUnderlyingStipType() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingStipTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetUnderlyingStipValue gets UnderlyingStipValue, Tag 889.
func (m NoUnderlyingStips) GetUnderlyingStipValue() (v string, err quickfix.MessageRejectError) {
var f field.UnderlyingStipValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasUnderlyingStipType returns true if UnderlyingStipType is present, Tag 888.
func (m NoUnderlyingStips) HasUnderlyingStipType() bool {
return m.Has(tag.UnderlyingStipType)
}
// HasUnderlyingStipValue returns true if UnderlyingStipValue is present, Tag 889.
func (m NoUnderlyingStips) HasUnderlyingStipValue() bool {
return m.Has(tag.UnderlyingStipValue)
}
// NoUnderlyingStipsRepeatingGroup is a repeating group, Tag 887.
type NoUnderlyingStipsRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoUnderlyingStipsRepeatingGroup returns an initialized, NoUnderlyingStipsRepeatingGroup.
func NewNoUnderlyingStipsRepeatingGroup() NoUnderlyingStipsRepeatingGroup {
return NoUnderlyingStipsRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoUnderlyingStips,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.UnderlyingStipType),
quickfix.GroupElement(tag.UnderlyingStipValue),
},
),
}
}
// Add create and append a new NoUnderlyingStips to this group.
func (m NoUnderlyingStipsRepeatingGroup) Add() NoUnderlyingStips {
g := m.RepeatingGroup.Add()
return NoUnderlyingStips{g}
}
// Get returns the ith NoUnderlyingStips in the NoUnderlyingStipsRepeatinGroup.
func (m NoUnderlyingStipsRepeatingGroup) Get(i int) NoUnderlyingStips {
return NoUnderlyingStips{m.RepeatingGroup.Get(i)}
}
// NoUnderlyingsRepeatingGroup is a repeating group, Tag 711.
type NoUnderlyingsRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoUnderlyingsRepeatingGroup returns an initialized, NoUnderlyingsRepeatingGroup.
func NewNoUnderlyingsRepeatingGroup() NoUnderlyingsRepeatingGroup {
return NoUnderlyingsRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoUnderlyings,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.UnderlyingSymbol),
quickfix.GroupElement(tag.UnderlyingSymbolSfx),
quickfix.GroupElement(tag.UnderlyingSecurityID),
quickfix.GroupElement(tag.UnderlyingSecurityIDSource),
NewNoUnderlyingSecurityAltIDRepeatingGroup(),
quickfix.GroupElement(tag.UnderlyingProduct),
quickfix.GroupElement(tag.UnderlyingCFICode),
quickfix.GroupElement(tag.UnderlyingSecurityType),
quickfix.GroupElement(tag.UnderlyingSecuritySubType),
quickfix.GroupElement(tag.UnderlyingMaturityMonthYear),
quickfix.GroupElement(tag.UnderlyingMaturityDate),
quickfix.GroupElement(tag.UnderlyingCouponPaymentDate),
quickfix.GroupElement(tag.UnderlyingIssueDate),
quickfix.GroupElement(tag.UnderlyingRepoCollateralSecurityType),
quickfix.GroupElement(tag.UnderlyingRepurchaseTerm),
quickfix.GroupElement(tag.UnderlyingRepurchaseRate),
quickfix.GroupElement(tag.UnderlyingFactor),
quickfix.GroupElement(tag.UnderlyingCreditRating),
quickfix.GroupElement(tag.UnderlyingInstrRegistry),
quickfix.GroupElement(tag.UnderlyingCountryOfIssue),
quickfix.GroupElement(tag.UnderlyingStateOrProvinceOfIssue),
quickfix.GroupElement(tag.UnderlyingLocaleOfIssue),
quickfix.GroupElement(tag.UnderlyingRedemptionDate),
quickfix.GroupElement(tag.UnderlyingStrikePrice),
quickfix.GroupElement(tag.UnderlyingStrikeCurrency),
quickfix.GroupElement(tag.UnderlyingOptAttribute),
quickfix.GroupElement(tag.UnderlyingContractMultiplier),
quickfix.GroupElement(tag.UnderlyingCouponRate),
quickfix.GroupElement(tag.UnderlyingSecurityExchange),
quickfix.GroupElement(tag.UnderlyingIssuer),
quickfix.GroupElement(tag.EncodedUnderlyingIssuerLen),
quickfix.GroupElement(tag.EncodedUnderlyingIssuer),
quickfix.GroupElement(tag.UnderlyingSecurityDesc),
quickfix.GroupElement(tag.EncodedUnderlyingSecurityDescLen),
quickfix.GroupElement(tag.EncodedUnderlyingSecurityDesc),
quickfix.GroupElement(tag.UnderlyingCPProgram),
quickfix.GroupElement(tag.UnderlyingCPRegType),
quickfix.GroupElement(tag.UnderlyingCurrency),
quickfix.GroupElement(tag.UnderlyingQty),
quickfix.GroupElement(tag.UnderlyingPx),
quickfix.GroupElement(tag.UnderlyingDirtyPrice),
quickfix.GroupElement(tag.UnderlyingEndPrice),
quickfix.GroupElement(tag.UnderlyingStartValue),
quickfix.GroupElement(tag.UnderlyingCurrentValue),
quickfix.GroupElement(tag.UnderlyingEndValue),
NewNoUnderlyingStipsRepeatingGroup(),
},
),
}
}
// Add create and append a new NoUnderlyings to this group.
func (m NoUnderlyingsRepeatingGroup) Add() NoUnderlyings {
g := m.RepeatingGroup.Add()
return NoUnderlyings{g}
}
// Get returns the ith NoUnderlyings in the NoUnderlyingsRepeatinGroup.
func (m NoUnderlyingsRepeatingGroup) Get(i int) NoUnderlyings {
return NoUnderlyings{m.RepeatingGroup.Get(i)}
}
// NoStipulations is a repeating group element, Tag 232.
type NoStipulations struct {
*quickfix.Group
}
// SetStipulationType sets StipulationType, Tag 233.
func (m NoStipulations) SetStipulationType(v enum.StipulationType) {
m.Set(field.NewStipulationType(v))
}
// SetStipulationValue sets StipulationValue, Tag 234.
func (m NoStipulations) SetStipulationValue(v enum.StipulationValue) {
m.Set(field.NewStipulationValue(v))
}
// GetStipulationType gets StipulationType, Tag 233.
func (m NoStipulations) GetStipulationType() (v enum.StipulationType, err quickfix.MessageRejectError) {
var f field.StipulationTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetStipulationValue gets StipulationValue, Tag 234.
func (m NoStipulations) GetStipulationValue() (v enum.StipulationValue, err quickfix.MessageRejectError) {
var f field.StipulationValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasStipulationType returns true if StipulationType is present, Tag 233.
func (m NoStipulations) HasStipulationType() bool {
return m.Has(tag.StipulationType)
}
// HasStipulationValue returns true if StipulationValue is present, Tag 234.
func (m NoStipulations) HasStipulationValue() bool {
return m.Has(tag.StipulationValue)
}
// NoStipulationsRepeatingGroup is a repeating group, Tag 232.
type NoStipulationsRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoStipulationsRepeatingGroup returns an initialized, NoStipulationsRepeatingGroup.
func NewNoStipulationsRepeatingGroup() NoStipulationsRepeatingGroup {
return NoStipulationsRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoStipulations,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.StipulationType),
quickfix.GroupElement(tag.StipulationValue),
},
),
}
}
// Add create and append a new NoStipulations to this group.
func (m NoStipulationsRepeatingGroup) Add() NoStipulations {
g := m.RepeatingGroup.Add()
return NoStipulations{g}
}
// Get returns the ith NoStipulations in the NoStipulationsRepeatinGroup.
func (m NoStipulationsRepeatingGroup) Get(i int) NoStipulations {
return NoStipulations{m.RepeatingGroup.Get(i)}
}
// NoLegs is a repeating group element, Tag 555.
type NoLegs struct {
*quickfix.Group
}
// SetLegSymbol sets LegSymbol, Tag 600.
func (m NoLegs) SetLegSymbol(v string) {
m.Set(field.NewLegSymbol(v))
}
// SetLegSymbolSfx sets LegSymbolSfx, Tag 601.
func (m NoLegs) SetLegSymbolSfx(v string) {
m.Set(field.NewLegSymbolSfx(v))
}
// SetLegSecurityID sets LegSecurityID, Tag 602.
func (m NoLegs) SetLegSecurityID(v string) {
m.Set(field.NewLegSecurityID(v))
}
// SetLegSecurityIDSource sets LegSecurityIDSource, Tag 603.
func (m NoLegs) SetLegSecurityIDSource(v string) {
m.Set(field.NewLegSecurityIDSource(v))
}
// SetNoLegSecurityAltID sets NoLegSecurityAltID, Tag 604.
func (m NoLegs) SetNoLegSecurityAltID(f NoLegSecurityAltIDRepeatingGroup) {
m.SetGroup(f)
}
// SetLegProduct sets LegProduct, Tag 607.
func (m NoLegs) SetLegProduct(v int) {
m.Set(field.NewLegProduct(v))
}
// SetLegCFICode sets LegCFICode, Tag 608.
func (m NoLegs) SetLegCFICode(v string) {
m.Set(field.NewLegCFICode(v))
}
// SetLegSecurityType sets LegSecurityType, Tag 609.
func (m NoLegs) SetLegSecurityType(v string) {
m.Set(field.NewLegSecurityType(v))
}
// SetLegSecuritySubType sets LegSecuritySubType, Tag 764.
func (m NoLegs) SetLegSecuritySubType(v string) {
m.Set(field.NewLegSecuritySubType(v))
}
// SetLegMaturityMonthYear sets LegMaturityMonthYear, Tag 610.
func (m NoLegs) SetLegMaturityMonthYear(v string) {
m.Set(field.NewLegMaturityMonthYear(v))
}
// SetLegMaturityDate sets LegMaturityDate, Tag 611.
func (m NoLegs) SetLegMaturityDate(v string) {
m.Set(field.NewLegMaturityDate(v))
}
// SetLegCouponPaymentDate sets LegCouponPaymentDate, Tag 248.
func (m NoLegs) SetLegCouponPaymentDate(v string) {
m.Set(field.NewLegCouponPaymentDate(v))
}
// SetLegIssueDate sets LegIssueDate, Tag 249.
func (m NoLegs) SetLegIssueDate(v string) {
m.Set(field.NewLegIssueDate(v))
}
// SetLegRepoCollateralSecurityType sets LegRepoCollateralSecurityType, Tag 250.
func (m NoLegs) SetLegRepoCollateralSecurityType(v int) {
m.Set(field.NewLegRepoCollateralSecurityType(v))
}
// SetLegRepurchaseTerm sets LegRepurchaseTerm, Tag 251.
func (m NoLegs) SetLegRepurchaseTerm(v int) {
m.Set(field.NewLegRepurchaseTerm(v))
}
// SetLegRepurchaseRate sets LegRepurchaseRate, Tag 252.
func (m NoLegs) SetLegRepurchaseRate(value decimal.Decimal, scale int32) {
m.Set(field.NewLegRepurchaseRate(value, scale))
}
// SetLegFactor sets LegFactor, Tag 253.
func (m NoLegs) SetLegFactor(value decimal.Decimal, scale int32) {
m.Set(field.NewLegFactor(value, scale))
}
// SetLegCreditRating sets LegCreditRating, Tag 257.
func (m NoLegs) SetLegCreditRating(v string) {
m.Set(field.NewLegCreditRating(v))
}
// SetLegInstrRegistry sets LegInstrRegistry, Tag 599.
func (m NoLegs) SetLegInstrRegistry(v string) {
m.Set(field.NewLegInstrRegistry(v))
}
// SetLegCountryOfIssue sets LegCountryOfIssue, Tag 596.
func (m NoLegs) SetLegCountryOfIssue(v string) {
m.Set(field.NewLegCountryOfIssue(v))
}
// SetLegStateOrProvinceOfIssue sets LegStateOrProvinceOfIssue, Tag 597.
func (m NoLegs) SetLegStateOrProvinceOfIssue(v string) {
m.Set(field.NewLegStateOrProvinceOfIssue(v))
}
// SetLegLocaleOfIssue sets LegLocaleOfIssue, Tag 598.
func (m NoLegs) SetLegLocaleOfIssue(v string) {
m.Set(field.NewLegLocaleOfIssue(v))
}
// SetLegRedemptionDate sets LegRedemptionDate, Tag 254.
func (m NoLegs) SetLegRedemptionDate(v string) {
m.Set(field.NewLegRedemptionDate(v))
}
// SetLegStrikePrice sets LegStrikePrice, Tag 612.
func (m NoLegs) SetLegStrikePrice(value decimal.Decimal, scale int32) {
m.Set(field.NewLegStrikePrice(value, scale))
}
// SetLegStrikeCurrency sets LegStrikeCurrency, Tag 942.
func (m NoLegs) SetLegStrikeCurrency(v string) {
m.Set(field.NewLegStrikeCurrency(v))
}
// SetLegOptAttribute sets LegOptAttribute, Tag 613.
func (m NoLegs) SetLegOptAttribute(v string) {
m.Set(field.NewLegOptAttribute(v))
}
// SetLegContractMultiplier sets LegContractMultiplier, Tag 614.
func (m NoLegs) SetLegContractMultiplier(value decimal.Decimal, scale int32) {
m.Set(field.NewLegContractMultiplier(value, scale))
}
// SetLegCouponRate sets LegCouponRate, Tag 615.
func (m NoLegs) SetLegCouponRate(value decimal.Decimal, scale int32) {
m.Set(field.NewLegCouponRate(value, scale))
}
// SetLegSecurityExchange sets LegSecurityExchange, Tag 616.
func (m NoLegs) SetLegSecurityExchange(v string) {
m.Set(field.NewLegSecurityExchange(v))
}
// SetLegIssuer sets LegIssuer, Tag 617.
func (m NoLegs) SetLegIssuer(v string) {
m.Set(field.NewLegIssuer(v))
}
// SetEncodedLegIssuerLen sets EncodedLegIssuerLen, Tag 618.
func (m NoLegs) SetEncodedLegIssuerLen(v int) {
m.Set(field.NewEncodedLegIssuerLen(v))
}
// SetEncodedLegIssuer sets EncodedLegIssuer, Tag 619.
func (m NoLegs) SetEncodedLegIssuer(v string) {
m.Set(field.NewEncodedLegIssuer(v))
}
// SetLegSecurityDesc sets LegSecurityDesc, Tag 620.
func (m NoLegs) SetLegSecurityDesc(v string) {
m.Set(field.NewLegSecurityDesc(v))
}
// SetEncodedLegSecurityDescLen sets EncodedLegSecurityDescLen, Tag 621.
func (m NoLegs) SetEncodedLegSecurityDescLen(v int) {
m.Set(field.NewEncodedLegSecurityDescLen(v))
}
// SetEncodedLegSecurityDesc sets EncodedLegSecurityDesc, Tag 622.
func (m NoLegs) SetEncodedLegSecurityDesc(v string) {
m.Set(field.NewEncodedLegSecurityDesc(v))
}
// SetLegRatioQty sets LegRatioQty, Tag 623.
func (m NoLegs) SetLegRatioQty(value decimal.Decimal, scale int32) {
m.Set(field.NewLegRatioQty(value, scale))
}
// SetLegSide sets LegSide, Tag 624.
func (m NoLegs) SetLegSide(v string) {
m.Set(field.NewLegSide(v))
}
// SetLegCurrency sets LegCurrency, Tag 556.
func (m NoLegs) SetLegCurrency(v string) {
m.Set(field.NewLegCurrency(v))
}
// SetLegPool sets LegPool, Tag 740.
func (m NoLegs) SetLegPool(v string) {
m.Set(field.NewLegPool(v))
}
// SetLegDatedDate sets LegDatedDate, Tag 739.
func (m NoLegs) SetLegDatedDate(v string) {
m.Set(field.NewLegDatedDate(v))
}
// SetLegContractSettlMonth sets LegContractSettlMonth, Tag 955.
func (m NoLegs) SetLegContractSettlMonth(v string) {
m.Set(field.NewLegContractSettlMonth(v))
}
// SetLegInterestAccrualDate sets LegInterestAccrualDate, Tag 956.
func (m NoLegs) SetLegInterestAccrualDate(v string) {
m.Set(field.NewLegInterestAccrualDate(v))
}
// SetLegPrice sets LegPrice, Tag 566.
func (m NoLegs) SetLegPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewLegPrice(value, scale))
}
// SetLegSecurityXMLLen sets LegSecurityXMLLen, Tag 1871.
func (m NoLegs) SetLegSecurityXMLLen(v int) {
m.Set(field.NewLegSecurityXMLLen(v))
}
// SetLegSecurityXML sets LegSecurityXML, Tag 1872.
func (m NoLegs) SetLegSecurityXML(v string) {
m.Set(field.NewLegSecurityXML(v))
}
// SetLegSecurityXMLSchema sets LegSecurityXMLSchema, Tag 1873.
func (m NoLegs) SetLegSecurityXMLSchema(v string) {
m.Set(field.NewLegSecurityXMLSchema(v))
}
// SetLegQty sets LegQty, Tag 687.
func (m NoLegs) SetLegQty(value decimal.Decimal, scale int32) {
m.Set(field.NewLegQty(value, scale))
}
// SetLegOrderQty sets LegOrderQty, Tag 685.
func (m NoLegs) SetLegOrderQty(value decimal.Decimal, scale int32) {
m.Set(field.NewLegOrderQty(value, scale))
}
// SetLegSwapType sets LegSwapType, Tag 690.
func (m NoLegs) SetLegSwapType(v enum.LegSwapType) {
m.Set(field.NewLegSwapType(v))
}
// SetLegSettlType sets LegSettlType, Tag 587.
func (m NoLegs) SetLegSettlType(v string) {
m.Set(field.NewLegSettlType(v))
}
// SetLegSettlDate sets LegSettlDate, Tag 588.
func (m NoLegs) SetLegSettlDate(v string) {
m.Set(field.NewLegSettlDate(v))
}
// SetNoLegStipulations sets NoLegStipulations, Tag 683.
func (m NoLegs) SetNoLegStipulations(f NoLegStipulationsRepeatingGroup) {
m.SetGroup(f)
}
// SetNoNestedPartyIDs sets NoNestedPartyIDs, Tag 539.
func (m NoLegs) SetNoNestedPartyIDs(f NoNestedPartyIDsRepeatingGroup) {
m.SetGroup(f)
}
// SetLegBenchmarkCurveCurrency sets LegBenchmarkCurveCurrency, Tag 676.
func (m NoLegs) SetLegBenchmarkCurveCurrency(v string) {
m.Set(field.NewLegBenchmarkCurveCurrency(v))
}
// SetLegBenchmarkCurveName sets LegBenchmarkCurveName, Tag 677.
func (m NoLegs) SetLegBenchmarkCurveName(v string) {
m.Set(field.NewLegBenchmarkCurveName(v))
}
// SetLegBenchmarkCurvePoint sets LegBenchmarkCurvePoint, Tag 678.
func (m NoLegs) SetLegBenchmarkCurvePoint(v string) {
m.Set(field.NewLegBenchmarkCurvePoint(v))
}
// SetLegBenchmarkPrice sets LegBenchmarkPrice, Tag 679.
func (m NoLegs) SetLegBenchmarkPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewLegBenchmarkPrice(value, scale))
}
// SetLegBenchmarkYield sets LegBenchmarkYield, Tag 22571.
func (m NoLegs) SetLegBenchmarkYield(value decimal.Decimal, scale int32) {
m.Set(field.NewLegBenchmarkYield(value, scale))
}
// SetLegBenchmarkPriceType sets LegBenchmarkPriceType, Tag 680.
func (m NoLegs) SetLegBenchmarkPriceType(v int) {
m.Set(field.NewLegBenchmarkPriceType(v))
}
// SetLegNotionalAmt sets LegNotionalAmt, Tag 9018.
func (m NoLegs) SetLegNotionalAmt(value decimal.Decimal, scale int32) {
m.Set(field.NewLegNotionalAmt(value, scale))
}
// SetLegPriceType sets LegPriceType, Tag 686.
func (m NoLegs) SetLegPriceType(v int) {
m.Set(field.NewLegPriceType(v))
}
// SetTradeLegRefID sets TradeLegRefID, Tag 824.
func (m NoLegs) SetTradeLegRefID(v string) {
m.Set(field.NewTradeLegRefID(v))
}
// SetLegISMN sets LegISMN, Tag 20047.
func (m NoLegs) SetLegISMN(v int) {
m.Set(field.NewLegISMN(v))
}
// SetLegEndDateBusDayAdj sets LegEndDateBusDayAdj, Tag 20039.
func (m NoLegs) SetLegEndDateBusDayAdj(v string) {
m.Set(field.NewLegEndDateBusDayAdj(v))
}
// SetLegOnTheRunValue sets LegOnTheRunValue, Tag 20053.
func (m NoLegs) SetLegOnTheRunValue(v int) {
m.Set(field.NewLegOnTheRunValue(v))
}
// SetLegReopeningValue sets LegReopeningValue, Tag 20055.
func (m NoLegs) SetLegReopeningValue(v int) {
m.Set(field.NewLegReopeningValue(v))
}
// SetLegCompQuote sets LegCompQuote, Tag 20046.
func (m NoLegs) SetLegCompQuote(value decimal.Decimal, scale int32) {
m.Set(field.NewLegCompQuote(value, scale))
}
// SetLegCMPSP sets LegCMPSP, Tag 20045.
func (m NoLegs) SetLegCMPSP(value decimal.Decimal, scale int32) {
m.Set(field.NewLegCMPSP(value, scale))
}
// SetLegBidPx sets LegBidPx, Tag 681.
func (m NoLegs) SetLegBidPx(value decimal.Decimal, scale int32) {
m.Set(field.NewLegBidPx(value, scale))
}
// SetLegOfferPx sets LegOfferPx, Tag 684.
func (m NoLegs) SetLegOfferPx(value decimal.Decimal, scale int32) {
m.Set(field.NewLegOfferPx(value, scale))
}
// SetLegTickSize sets LegTickSize, Tag 20048.
func (m NoLegs) SetLegTickSize(value decimal.Decimal, scale int32) {
m.Set(field.NewLegTickSize(value, scale))
}
// SetLegPositionEffect sets LegPositionEffect, Tag 564.
func (m NoLegs) SetLegPositionEffect(v string) {
m.Set(field.NewLegPositionEffect(v))
}
// SetLegOutstandingAmount sets LegOutstandingAmount, Tag 20131.
func (m NoLegs) SetLegOutstandingAmount(value decimal.Decimal, scale int32) {
m.Set(field.NewLegOutstandingAmount(value, scale))
}
// SetLegCompositeSize sets LegCompositeSize, Tag 20133.
func (m NoLegs) SetLegCompositeSize(value decimal.Decimal, scale int32) {
m.Set(field.NewLegCompositeSize(value, scale))
}
// SetLegInventoryAmount sets LegInventoryAmount, Tag 20135.
func (m NoLegs) SetLegInventoryAmount(value decimal.Decimal, scale int32) {
m.Set(field.NewLegInventoryAmount(value, scale))
}
// SetLegInventorySpread sets LegInventorySpread, Tag 20137.
func (m NoLegs) SetLegInventorySpread(value decimal.Decimal, scale int32) {
m.Set(field.NewLegInventorySpread(value, scale))
}
// SetLegLeadManagers sets LegLeadManagers, Tag 20139.
func (m NoLegs) SetLegLeadManagers(v string) {
m.Set(field.NewLegLeadManagers(v))
}
// SetNoLegCreditRating sets NoLegCreditRating, Tag 5118.
func (m NoLegs) SetNoLegCreditRating(f NoLegCreditRatingRepeatingGroup) {
m.SetGroup(f)
}
// SetLegNoCalcProvided sets LegNoCalcProvided, Tag 20141.
func (m NoLegs) SetLegNoCalcProvided(v bool) {
m.Set(field.NewLegNoCalcProvided(v))
}
// SetLegBenchmarkSecurityID sets LegBenchmarkSecurityID, Tag 20142.
func (m NoLegs) SetLegBenchmarkSecurityID(v string) {
m.Set(field.NewLegBenchmarkSecurityID(v))
}
// SetLegBenchmarkSecurityIDSource sets LegBenchmarkSecurityIDSource, Tag 20143.
func (m NoLegs) SetLegBenchmarkSecurityIDSource(v string) {
m.Set(field.NewLegBenchmarkSecurityIDSource(v))
}
// SetLegBenchmarkSecurityAltID sets LegBenchmarkSecurityAltID, Tag 20159.
func (m NoLegs) SetLegBenchmarkSecurityAltID(v string) {
m.Set(field.NewLegBenchmarkSecurityAltID(v))
}
// SetLegBenchmarkSecurityAltIDSource sets LegBenchmarkSecurityAltIDSource, Tag 20160.
func (m NoLegs) SetLegBenchmarkSecurityAltIDSource(v string) {
m.Set(field.NewLegBenchmarkSecurityAltIDSource(v))
}
// SetLegTWBenchmarkSecurityID sets LegTWBenchmarkSecurityID, Tag 20151.
func (m NoLegs) SetLegTWBenchmarkSecurityID(v string) {
m.Set(field.NewLegTWBenchmarkSecurityID(v))
}
// SetLegTWBenchmarkSecurityIDSource sets LegTWBenchmarkSecurityIDSource, Tag 20152.
func (m NoLegs) SetLegTWBenchmarkSecurityIDSource(v string) {
m.Set(field.NewLegTWBenchmarkSecurityIDSource(v))
}
// SetLegTWBenchmarkSecurityAltID sets LegTWBenchmarkSecurityAltID, Tag 20163.
func (m NoLegs) SetLegTWBenchmarkSecurityAltID(v string) {
m.Set(field.NewLegTWBenchmarkSecurityAltID(v))
}
// SetLegTWBenchmarkSecurityAltIDSource sets LegTWBenchmarkSecurityAltIDSource, Tag 20164.
func (m NoLegs) SetLegTWBenchmarkSecurityAltIDSource(v string) {
m.Set(field.NewLegTWBenchmarkSecurityAltIDSource(v))
}
// SetLegBenchmarkSymbolSfx sets LegBenchmarkSymbolSfx, Tag 20144.
func (m NoLegs) SetLegBenchmarkSymbolSfx(v string) {
m.Set(field.NewLegBenchmarkSymbolSfx(v))
}
// SetLegBenchmarkSymbolAltSfx sets LegBenchmarkSymbolAltSfx, Tag 20166.
func (m NoLegs) SetLegBenchmarkSymbolAltSfx(v string) {
m.Set(field.NewLegBenchmarkSymbolAltSfx(v))
}
// SetLegTWBenchmarkSymbolSfx sets LegTWBenchmarkSymbolSfx, Tag 20154.
func (m NoLegs) SetLegTWBenchmarkSymbolSfx(v string) {
m.Set(field.NewLegTWBenchmarkSymbolSfx(v))
}
// SetLegTWBenchmarkSymbolAltSfx sets LegTWBenchmarkSymbolAltSfx, Tag 20168.
func (m NoLegs) SetLegTWBenchmarkSymbolAltSfx(v string) {
m.Set(field.NewLegTWBenchmarkSymbolAltSfx(v))
}
// SetLegTWBenchmarkPrice sets LegTWBenchmarkPrice, Tag 20173.
func (m NoLegs) SetLegTWBenchmarkPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewLegTWBenchmarkPrice(value, scale))
}
// SetLegTWBenchmarkPriceType sets LegTWBenchmarkPriceType, Tag 20174.
func (m NoLegs) SetLegTWBenchmarkPriceType(v int) {
m.Set(field.NewLegTWBenchmarkPriceType(v))
}
// SetLegDealerBenchmarkPrice sets LegDealerBenchmarkPrice, Tag 22573.
func (m NoLegs) SetLegDealerBenchmarkPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewLegDealerBenchmarkPrice(value, scale))
}
// SetLegDealerBenchmarkYield sets LegDealerBenchmarkYield, Tag 22575.
func (m NoLegs) SetLegDealerBenchmarkYield(value decimal.Decimal, scale int32) {
m.Set(field.NewLegDealerBenchmarkYield(value, scale))
}
// SetLegInventoryTier sets LegInventoryTier, Tag 20146.
func (m NoLegs) SetLegInventoryTier(v string) {
m.Set(field.NewLegInventoryTier(v))
}
// SetLegPricingTier sets LegPricingTier, Tag 20148.
func (m NoLegs) SetLegPricingTier(v string) {
m.Set(field.NewLegPricingTier(v))
}
// SetLegFirstCouponPaymentDate sets LegFirstCouponPaymentDate, Tag 20176.
func (m NoLegs) SetLegFirstCouponPaymentDate(v string) {
m.Set(field.NewLegFirstCouponPaymentDate(v))
}
// SetLegNetMoney sets LegNetMoney, Tag 6726.
func (m NoLegs) SetLegNetMoney(value decimal.Decimal, scale int32) {
m.Set(field.NewLegNetMoney(value, scale))
}
// SetLegGrossTradeAmt sets LegGrossTradeAmt, Tag 6723.
func (m NoLegs) SetLegGrossTradeAmt(value decimal.Decimal, scale int32) {
m.Set(field.NewLegGrossTradeAmt(value, scale))
}
// SetLegNextCouponRate sets LegNextCouponRate, Tag 20180.
func (m NoLegs) SetLegNextCouponRate(value decimal.Decimal, scale int32) {
m.Set(field.NewLegNextCouponRate(value, scale))
}
// SetLegYieldType sets LegYieldType, Tag 20177.
func (m NoLegs) SetLegYieldType(v string) {
m.Set(field.NewLegYieldType(v))
}
// SetLegYield sets LegYield, Tag 20178.
func (m NoLegs) SetLegYield(value decimal.Decimal, scale int32) {
m.Set(field.NewLegYield(value, scale))
}
// SetLegIndustryCode sets LegIndustryCode, Tag 22567.
func (m NoLegs) SetLegIndustryCode(v string) {
m.Set(field.NewLegIndustryCode(v))
}
// SetLegRoundLot sets LegRoundLot, Tag 22568.
func (m NoLegs) SetLegRoundLot(value decimal.Decimal, scale int32) {
m.Set(field.NewLegRoundLot(value, scale))
}
// SetLegMinTradeVol sets LegMinTradeVol, Tag 22569.
func (m NoLegs) SetLegMinTradeVol(value decimal.Decimal, scale int32) {
m.Set(field.NewLegMinTradeVol(value, scale))
}
// SetLegUseDealerBenchmark sets LegUseDealerBenchmark, Tag 22577.
func (m NoLegs) SetLegUseDealerBenchmark(v bool) {
m.Set(field.NewLegUseDealerBenchmark(v))
}
// SetLegTradeAxeIndicator sets LegTradeAxeIndicator, Tag 20234.
func (m NoLegs) SetLegTradeAxeIndicator(v string) {
m.Set(field.NewLegTradeAxeIndicator(v))
}
// SetLegExecutionFeeSchedule sets LegExecutionFeeSchedule, Tag 20057.
func (m NoLegs) SetLegExecutionFeeSchedule(v string) {
m.Set(field.NewLegExecutionFeeSchedule(v))
}
// SetLegExecutionFeeType sets LegExecutionFeeType, Tag 20059.
func (m NoLegs) SetLegExecutionFeeType(v int) {
m.Set(field.NewLegExecutionFeeType(v))
}
// SetLegCallDate sets LegCallDate, Tag 20268.
func (m NoLegs) SetLegCallDate(v string) {
m.Set(field.NewLegCallDate(v))
}
// SetLegCallType sets LegCallType, Tag 20269.
func (m NoLegs) SetLegCallType(v string) {
m.Set(field.NewLegCallType(v))
}
// SetLegCallPrice sets LegCallPrice, Tag 20267.
func (m NoLegs) SetLegCallPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewLegCallPrice(value, scale))
}
// SetLegFxRate sets LegFxRate, Tag 22644.
func (m NoLegs) SetLegFxRate(value decimal.Decimal, scale int32) {
m.Set(field.NewLegFxRate(value, scale))
}
// SetLegSettlCurrency sets LegSettlCurrency, Tag 675.
func (m NoLegs) SetLegSettlCurrency(v string) {
m.Set(field.NewLegSettlCurrency(v))
}
// SetLegMarketSegment sets LegMarketSegment, Tag 20270.
func (m NoLegs) SetLegMarketSegment(v string) {
m.Set(field.NewLegMarketSegment(v))
}
// SetLegRegulatoryType sets LegRegulatoryType, Tag 20277.
func (m NoLegs) SetLegRegulatoryType(v string) {
m.Set(field.NewLegRegulatoryType(v))
}
// SetLegOnMTF sets LegOnMTF, Tag 23071.
func (m NoLegs) SetLegOnMTF(v bool) {
m.Set(field.NewLegOnMTF(v))
}
// SetLegLiquidity sets LegLiquidity, Tag 23075.
func (m NoLegs) SetLegLiquidity(v int) {
m.Set(field.NewLegLiquidity(v))
}
// SetLegPreTrans sets LegPreTrans, Tag 23077.
func (m NoLegs) SetLegPreTrans(v int) {
m.Set(field.NewLegPreTrans(v))
}
// SetLegClientTradingCapacity sets LegClientTradingCapacity, Tag 23082.
func (m NoLegs) SetLegClientTradingCapacity(v string) {
m.Set(field.NewLegClientTradingCapacity(v))
}
// SetLegMiFIDMIC sets LegMiFIDMIC, Tag 23081.
func (m NoLegs) SetLegMiFIDMIC(v string) {
m.Set(field.NewLegMiFIDMIC(v))
}
// SetLegAlgoQuote sets LegAlgoQuote, Tag 20397.
func (m NoLegs) SetLegAlgoQuote(value decimal.Decimal, scale int32) {
m.Set(field.NewLegAlgoQuote(value, scale))
}
// SetLegAlgoPrice sets LegAlgoPrice, Tag 20399.
func (m NoLegs) SetLegAlgoPrice(value decimal.Decimal, scale int32) {
m.Set(field.NewLegAlgoPrice(value, scale))
}
// SetLegAlgoDV01 sets LegAlgoDV01, Tag 20401.
func (m NoLegs) SetLegAlgoDV01(value decimal.Decimal, scale int32) {
m.Set(field.NewLegAlgoDV01(value, scale))
}
// SetLegAlgoNet sets LegAlgoNet, Tag 20403.
func (m NoLegs) SetLegAlgoNet(value decimal.Decimal, scale int32) {
m.Set(field.NewLegAlgoNet(value, scale))
}
// GetLegSymbol gets LegSymbol, Tag 600.
func (m NoLegs) GetLegSymbol() (v string, err quickfix.MessageRejectError) {
var f field.LegSymbolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSymbolSfx gets LegSymbolSfx, Tag 601.
func (m NoLegs) GetLegSymbolSfx() (v string, err quickfix.MessageRejectError) {
var f field.LegSymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityID gets LegSecurityID, Tag 602.
func (m NoLegs) GetLegSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityIDSource gets LegSecurityIDSource, Tag 603.
func (m NoLegs) GetLegSecurityIDSource() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoLegSecurityAltID gets NoLegSecurityAltID, Tag 604.
func (m NoLegs) GetNoLegSecurityAltID() (NoLegSecurityAltIDRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoLegSecurityAltIDRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetLegProduct gets LegProduct, Tag 607.
func (m NoLegs) GetLegProduct() (v int, err quickfix.MessageRejectError) {
var f field.LegProductField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCFICode gets LegCFICode, Tag 608.
func (m NoLegs) GetLegCFICode() (v string, err quickfix.MessageRejectError) {
var f field.LegCFICodeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityType gets LegSecurityType, Tag 609.
func (m NoLegs) GetLegSecurityType() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecuritySubType gets LegSecuritySubType, Tag 764.
func (m NoLegs) GetLegSecuritySubType() (v string, err quickfix.MessageRejectError) {
var f field.LegSecuritySubTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegMaturityMonthYear gets LegMaturityMonthYear, Tag 610.
func (m NoLegs) GetLegMaturityMonthYear() (v string, err quickfix.MessageRejectError) {
var f field.LegMaturityMonthYearField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegMaturityDate gets LegMaturityDate, Tag 611.
func (m NoLegs) GetLegMaturityDate() (v string, err quickfix.MessageRejectError) {
var f field.LegMaturityDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCouponPaymentDate gets LegCouponPaymentDate, Tag 248.
func (m NoLegs) GetLegCouponPaymentDate() (v string, err quickfix.MessageRejectError) {
var f field.LegCouponPaymentDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegIssueDate gets LegIssueDate, Tag 249.
func (m NoLegs) GetLegIssueDate() (v string, err quickfix.MessageRejectError) {
var f field.LegIssueDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRepoCollateralSecurityType gets LegRepoCollateralSecurityType, Tag 250.
func (m NoLegs) GetLegRepoCollateralSecurityType() (v int, err quickfix.MessageRejectError) {
var f field.LegRepoCollateralSecurityTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRepurchaseTerm gets LegRepurchaseTerm, Tag 251.
func (m NoLegs) GetLegRepurchaseTerm() (v int, err quickfix.MessageRejectError) {
var f field.LegRepurchaseTermField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRepurchaseRate gets LegRepurchaseRate, Tag 252.
func (m NoLegs) GetLegRepurchaseRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegRepurchaseRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegFactor gets LegFactor, Tag 253.
func (m NoLegs) GetLegFactor() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegFactorField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCreditRating gets LegCreditRating, Tag 257.
func (m NoLegs) GetLegCreditRating() (v string, err quickfix.MessageRejectError) {
var f field.LegCreditRatingField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegInstrRegistry gets LegInstrRegistry, Tag 599.
func (m NoLegs) GetLegInstrRegistry() (v string, err quickfix.MessageRejectError) {
var f field.LegInstrRegistryField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCountryOfIssue gets LegCountryOfIssue, Tag 596.
func (m NoLegs) GetLegCountryOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.LegCountryOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegStateOrProvinceOfIssue gets LegStateOrProvinceOfIssue, Tag 597.
func (m NoLegs) GetLegStateOrProvinceOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.LegStateOrProvinceOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegLocaleOfIssue gets LegLocaleOfIssue, Tag 598.
func (m NoLegs) GetLegLocaleOfIssue() (v string, err quickfix.MessageRejectError) {
var f field.LegLocaleOfIssueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRedemptionDate gets LegRedemptionDate, Tag 254.
func (m NoLegs) GetLegRedemptionDate() (v string, err quickfix.MessageRejectError) {
var f field.LegRedemptionDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegStrikePrice gets LegStrikePrice, Tag 612.
func (m NoLegs) GetLegStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegStrikePriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegStrikeCurrency gets LegStrikeCurrency, Tag 942.
func (m NoLegs) GetLegStrikeCurrency() (v string, err quickfix.MessageRejectError) {
var f field.LegStrikeCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegOptAttribute gets LegOptAttribute, Tag 613.
func (m NoLegs) GetLegOptAttribute() (v string, err quickfix.MessageRejectError) {
var f field.LegOptAttributeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegContractMultiplier gets LegContractMultiplier, Tag 614.
func (m NoLegs) GetLegContractMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegContractMultiplierField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCouponRate gets LegCouponRate, Tag 615.
func (m NoLegs) GetLegCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegCouponRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityExchange gets LegSecurityExchange, Tag 616.
func (m NoLegs) GetLegSecurityExchange() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityExchangeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegIssuer gets LegIssuer, Tag 617.
func (m NoLegs) GetLegIssuer() (v string, err quickfix.MessageRejectError) {
var f field.LegIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedLegIssuerLen gets EncodedLegIssuerLen, Tag 618.
func (m NoLegs) GetEncodedLegIssuerLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedLegIssuerLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedLegIssuer gets EncodedLegIssuer, Tag 619.
func (m NoLegs) GetEncodedLegIssuer() (v string, err quickfix.MessageRejectError) {
var f field.EncodedLegIssuerField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityDesc gets LegSecurityDesc, Tag 620.
func (m NoLegs) GetLegSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedLegSecurityDescLen gets EncodedLegSecurityDescLen, Tag 621.
func (m NoLegs) GetEncodedLegSecurityDescLen() (v int, err quickfix.MessageRejectError) {
var f field.EncodedLegSecurityDescLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetEncodedLegSecurityDesc gets EncodedLegSecurityDesc, Tag 622.
func (m NoLegs) GetEncodedLegSecurityDesc() (v string, err quickfix.MessageRejectError) {
var f field.EncodedLegSecurityDescField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRatioQty gets LegRatioQty, Tag 623.
func (m NoLegs) GetLegRatioQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegRatioQtyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSide gets LegSide, Tag 624.
func (m NoLegs) GetLegSide() (v string, err quickfix.MessageRejectError) {
var f field.LegSideField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCurrency gets LegCurrency, Tag 556.
func (m NoLegs) GetLegCurrency() (v string, err quickfix.MessageRejectError) {
var f field.LegCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegPool gets LegPool, Tag 740.
func (m NoLegs) GetLegPool() (v string, err quickfix.MessageRejectError) {
var f field.LegPoolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegDatedDate gets LegDatedDate, Tag 739.
func (m NoLegs) GetLegDatedDate() (v string, err quickfix.MessageRejectError) {
var f field.LegDatedDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegContractSettlMonth gets LegContractSettlMonth, Tag 955.
func (m NoLegs) GetLegContractSettlMonth() (v string, err quickfix.MessageRejectError) {
var f field.LegContractSettlMonthField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegInterestAccrualDate gets LegInterestAccrualDate, Tag 956.
func (m NoLegs) GetLegInterestAccrualDate() (v string, err quickfix.MessageRejectError) {
var f field.LegInterestAccrualDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegPrice gets LegPrice, Tag 566.
func (m NoLegs) GetLegPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityXMLLen gets LegSecurityXMLLen, Tag 1871.
func (m NoLegs) GetLegSecurityXMLLen() (v int, err quickfix.MessageRejectError) {
var f field.LegSecurityXMLLenField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityXML gets LegSecurityXML, Tag 1872.
func (m NoLegs) GetLegSecurityXML() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityXMLField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityXMLSchema gets LegSecurityXMLSchema, Tag 1873.
func (m NoLegs) GetLegSecurityXMLSchema() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityXMLSchemaField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegQty gets LegQty, Tag 687.
func (m NoLegs) GetLegQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegQtyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegOrderQty gets LegOrderQty, Tag 685.
func (m NoLegs) GetLegOrderQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegOrderQtyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSwapType gets LegSwapType, Tag 690.
func (m NoLegs) GetLegSwapType() (v enum.LegSwapType, err quickfix.MessageRejectError) {
var f field.LegSwapTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSettlType gets LegSettlType, Tag 587.
func (m NoLegs) GetLegSettlType() (v string, err quickfix.MessageRejectError) {
var f field.LegSettlTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSettlDate gets LegSettlDate, Tag 588.
func (m NoLegs) GetLegSettlDate() (v string, err quickfix.MessageRejectError) {
var f field.LegSettlDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoLegStipulations gets NoLegStipulations, Tag 683.
func (m NoLegs) GetNoLegStipulations() (NoLegStipulationsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoLegStipulationsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetNoNestedPartyIDs gets NoNestedPartyIDs, Tag 539.
func (m NoLegs) GetNoNestedPartyIDs() (NoNestedPartyIDsRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoNestedPartyIDsRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetLegBenchmarkCurveCurrency gets LegBenchmarkCurveCurrency, Tag 676.
func (m NoLegs) GetLegBenchmarkCurveCurrency() (v string, err quickfix.MessageRejectError) {
var f field.LegBenchmarkCurveCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBenchmarkCurveName gets LegBenchmarkCurveName, Tag 677.
func (m NoLegs) GetLegBenchmarkCurveName() (v string, err quickfix.MessageRejectError) {
var f field.LegBenchmarkCurveNameField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBenchmarkCurvePoint gets LegBenchmarkCurvePoint, Tag 678.
func (m NoLegs) GetLegBenchmarkCurvePoint() (v string, err quickfix.MessageRejectError) {
var f field.LegBenchmarkCurvePointField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBenchmarkPrice gets LegBenchmarkPrice, Tag 679.
func (m NoLegs) GetLegBenchmarkPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegBenchmarkPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBenchmarkYield gets LegBenchmarkYield, Tag 22571.
func (m NoLegs) GetLegBenchmarkYield() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegBenchmarkYieldField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBenchmarkPriceType gets LegBenchmarkPriceType, Tag 680.
func (m NoLegs) GetLegBenchmarkPriceType() (v int, err quickfix.MessageRejectError) {
var f field.LegBenchmarkPriceTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegNotionalAmt gets LegNotionalAmt, Tag 9018.
func (m NoLegs) GetLegNotionalAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegNotionalAmtField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegPriceType gets LegPriceType, Tag 686.
func (m NoLegs) GetLegPriceType() (v int, err quickfix.MessageRejectError) {
var f field.LegPriceTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTradeLegRefID gets TradeLegRefID, Tag 824.
func (m NoLegs) GetTradeLegRefID() (v string, err quickfix.MessageRejectError) {
var f field.TradeLegRefIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegISMN gets LegISMN, Tag 20047.
func (m NoLegs) GetLegISMN() (v int, err quickfix.MessageRejectError) {
var f field.LegISMNField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegEndDateBusDayAdj gets LegEndDateBusDayAdj, Tag 20039.
func (m NoLegs) GetLegEndDateBusDayAdj() (v string, err quickfix.MessageRejectError) {
var f field.LegEndDateBusDayAdjField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegOnTheRunValue gets LegOnTheRunValue, Tag 20053.
func (m NoLegs) GetLegOnTheRunValue() (v int, err quickfix.MessageRejectError) {
var f field.LegOnTheRunValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegReopeningValue gets LegReopeningValue, Tag 20055.
func (m NoLegs) GetLegReopeningValue() (v int, err quickfix.MessageRejectError) {
var f field.LegReopeningValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCompQuote gets LegCompQuote, Tag 20046.
func (m NoLegs) GetLegCompQuote() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegCompQuoteField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCMPSP gets LegCMPSP, Tag 20045.
func (m NoLegs) GetLegCMPSP() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegCMPSPField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBidPx gets LegBidPx, Tag 681.
func (m NoLegs) GetLegBidPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegBidPxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegOfferPx gets LegOfferPx, Tag 684.
func (m NoLegs) GetLegOfferPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegOfferPxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegTickSize gets LegTickSize, Tag 20048.
func (m NoLegs) GetLegTickSize() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegTickSizeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegPositionEffect gets LegPositionEffect, Tag 564.
func (m NoLegs) GetLegPositionEffect() (v string, err quickfix.MessageRejectError) {
var f field.LegPositionEffectField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegOutstandingAmount gets LegOutstandingAmount, Tag 20131.
func (m NoLegs) GetLegOutstandingAmount() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegOutstandingAmountField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCompositeSize gets LegCompositeSize, Tag 20133.
func (m NoLegs) GetLegCompositeSize() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegCompositeSizeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegInventoryAmount gets LegInventoryAmount, Tag 20135.
func (m NoLegs) GetLegInventoryAmount() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegInventoryAmountField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegInventorySpread gets LegInventorySpread, Tag 20137.
func (m NoLegs) GetLegInventorySpread() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegInventorySpreadField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegLeadManagers gets LegLeadManagers, Tag 20139.
func (m NoLegs) GetLegLeadManagers() (v string, err quickfix.MessageRejectError) {
var f field.LegLeadManagersField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetNoLegCreditRating gets NoLegCreditRating, Tag 5118.
func (m NoLegs) GetNoLegCreditRating() (NoLegCreditRatingRepeatingGroup, quickfix.MessageRejectError) {
f := NewNoLegCreditRatingRepeatingGroup()
err := m.GetGroup(f)
return f, err
}
// GetLegNoCalcProvided gets LegNoCalcProvided, Tag 20141.
func (m NoLegs) GetLegNoCalcProvided() (v bool, err quickfix.MessageRejectError) {
var f field.LegNoCalcProvidedField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBenchmarkSecurityID gets LegBenchmarkSecurityID, Tag 20142.
func (m NoLegs) GetLegBenchmarkSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.LegBenchmarkSecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBenchmarkSecurityIDSource gets LegBenchmarkSecurityIDSource, Tag 20143.
func (m NoLegs) GetLegBenchmarkSecurityIDSource() (v string, err quickfix.MessageRejectError) {
var f field.LegBenchmarkSecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBenchmarkSecurityAltID gets LegBenchmarkSecurityAltID, Tag 20159.
func (m NoLegs) GetLegBenchmarkSecurityAltID() (v string, err quickfix.MessageRejectError) {
var f field.LegBenchmarkSecurityAltIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBenchmarkSecurityAltIDSource gets LegBenchmarkSecurityAltIDSource, Tag 20160.
func (m NoLegs) GetLegBenchmarkSecurityAltIDSource() (v string, err quickfix.MessageRejectError) {
var f field.LegBenchmarkSecurityAltIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegTWBenchmarkSecurityID gets LegTWBenchmarkSecurityID, Tag 20151.
func (m NoLegs) GetLegTWBenchmarkSecurityID() (v string, err quickfix.MessageRejectError) {
var f field.LegTWBenchmarkSecurityIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegTWBenchmarkSecurityIDSource gets LegTWBenchmarkSecurityIDSource, Tag 20152.
func (m NoLegs) GetLegTWBenchmarkSecurityIDSource() (v string, err quickfix.MessageRejectError) {
var f field.LegTWBenchmarkSecurityIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegTWBenchmarkSecurityAltID gets LegTWBenchmarkSecurityAltID, Tag 20163.
func (m NoLegs) GetLegTWBenchmarkSecurityAltID() (v string, err quickfix.MessageRejectError) {
var f field.LegTWBenchmarkSecurityAltIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegTWBenchmarkSecurityAltIDSource gets LegTWBenchmarkSecurityAltIDSource, Tag 20164.
func (m NoLegs) GetLegTWBenchmarkSecurityAltIDSource() (v string, err quickfix.MessageRejectError) {
var f field.LegTWBenchmarkSecurityAltIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBenchmarkSymbolSfx gets LegBenchmarkSymbolSfx, Tag 20144.
func (m NoLegs) GetLegBenchmarkSymbolSfx() (v string, err quickfix.MessageRejectError) {
var f field.LegBenchmarkSymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegBenchmarkSymbolAltSfx gets LegBenchmarkSymbolAltSfx, Tag 20166.
func (m NoLegs) GetLegBenchmarkSymbolAltSfx() (v string, err quickfix.MessageRejectError) {
var f field.LegBenchmarkSymbolAltSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegTWBenchmarkSymbolSfx gets LegTWBenchmarkSymbolSfx, Tag 20154.
func (m NoLegs) GetLegTWBenchmarkSymbolSfx() (v string, err quickfix.MessageRejectError) {
var f field.LegTWBenchmarkSymbolSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegTWBenchmarkSymbolAltSfx gets LegTWBenchmarkSymbolAltSfx, Tag 20168.
func (m NoLegs) GetLegTWBenchmarkSymbolAltSfx() (v string, err quickfix.MessageRejectError) {
var f field.LegTWBenchmarkSymbolAltSfxField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegTWBenchmarkPrice gets LegTWBenchmarkPrice, Tag 20173.
func (m NoLegs) GetLegTWBenchmarkPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegTWBenchmarkPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegTWBenchmarkPriceType gets LegTWBenchmarkPriceType, Tag 20174.
func (m NoLegs) GetLegTWBenchmarkPriceType() (v int, err quickfix.MessageRejectError) {
var f field.LegTWBenchmarkPriceTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegDealerBenchmarkPrice gets LegDealerBenchmarkPrice, Tag 22573.
func (m NoLegs) GetLegDealerBenchmarkPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegDealerBenchmarkPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegDealerBenchmarkYield gets LegDealerBenchmarkYield, Tag 22575.
func (m NoLegs) GetLegDealerBenchmarkYield() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegDealerBenchmarkYieldField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegInventoryTier gets LegInventoryTier, Tag 20146.
func (m NoLegs) GetLegInventoryTier() (v string, err quickfix.MessageRejectError) {
var f field.LegInventoryTierField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegPricingTier gets LegPricingTier, Tag 20148.
func (m NoLegs) GetLegPricingTier() (v string, err quickfix.MessageRejectError) {
var f field.LegPricingTierField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegFirstCouponPaymentDate gets LegFirstCouponPaymentDate, Tag 20176.
func (m NoLegs) GetLegFirstCouponPaymentDate() (v string, err quickfix.MessageRejectError) {
var f field.LegFirstCouponPaymentDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegNetMoney gets LegNetMoney, Tag 6726.
func (m NoLegs) GetLegNetMoney() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegNetMoneyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegGrossTradeAmt gets LegGrossTradeAmt, Tag 6723.
func (m NoLegs) GetLegGrossTradeAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegGrossTradeAmtField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegNextCouponRate gets LegNextCouponRate, Tag 20180.
func (m NoLegs) GetLegNextCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegNextCouponRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegYieldType gets LegYieldType, Tag 20177.
func (m NoLegs) GetLegYieldType() (v string, err quickfix.MessageRejectError) {
var f field.LegYieldTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegYield gets LegYield, Tag 20178.
func (m NoLegs) GetLegYield() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegYieldField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegIndustryCode gets LegIndustryCode, Tag 22567.
func (m NoLegs) GetLegIndustryCode() (v string, err quickfix.MessageRejectError) {
var f field.LegIndustryCodeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRoundLot gets LegRoundLot, Tag 22568.
func (m NoLegs) GetLegRoundLot() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegRoundLotField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegMinTradeVol gets LegMinTradeVol, Tag 22569.
func (m NoLegs) GetLegMinTradeVol() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegMinTradeVolField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegUseDealerBenchmark gets LegUseDealerBenchmark, Tag 22577.
func (m NoLegs) GetLegUseDealerBenchmark() (v bool, err quickfix.MessageRejectError) {
var f field.LegUseDealerBenchmarkField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegTradeAxeIndicator gets LegTradeAxeIndicator, Tag 20234.
func (m NoLegs) GetLegTradeAxeIndicator() (v string, err quickfix.MessageRejectError) {
var f field.LegTradeAxeIndicatorField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegExecutionFeeSchedule gets LegExecutionFeeSchedule, Tag 20057.
func (m NoLegs) GetLegExecutionFeeSchedule() (v string, err quickfix.MessageRejectError) {
var f field.LegExecutionFeeScheduleField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegExecutionFeeType gets LegExecutionFeeType, Tag 20059.
func (m NoLegs) GetLegExecutionFeeType() (v int, err quickfix.MessageRejectError) {
var f field.LegExecutionFeeTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCallDate gets LegCallDate, Tag 20268.
func (m NoLegs) GetLegCallDate() (v string, err quickfix.MessageRejectError) {
var f field.LegCallDateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCallType gets LegCallType, Tag 20269.
func (m NoLegs) GetLegCallType() (v string, err quickfix.MessageRejectError) {
var f field.LegCallTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCallPrice gets LegCallPrice, Tag 20267.
func (m NoLegs) GetLegCallPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegCallPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegFxRate gets LegFxRate, Tag 22644.
func (m NoLegs) GetLegFxRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegFxRateField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSettlCurrency gets LegSettlCurrency, Tag 675.
func (m NoLegs) GetLegSettlCurrency() (v string, err quickfix.MessageRejectError) {
var f field.LegSettlCurrencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegMarketSegment gets LegMarketSegment, Tag 20270.
func (m NoLegs) GetLegMarketSegment() (v string, err quickfix.MessageRejectError) {
var f field.LegMarketSegmentField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegRegulatoryType gets LegRegulatoryType, Tag 20277.
func (m NoLegs) GetLegRegulatoryType() (v string, err quickfix.MessageRejectError) {
var f field.LegRegulatoryTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegOnMTF gets LegOnMTF, Tag 23071.
func (m NoLegs) GetLegOnMTF() (v bool, err quickfix.MessageRejectError) {
var f field.LegOnMTFField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegLiquidity gets LegLiquidity, Tag 23075.
func (m NoLegs) GetLegLiquidity() (v int, err quickfix.MessageRejectError) {
var f field.LegLiquidityField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegPreTrans gets LegPreTrans, Tag 23077.
func (m NoLegs) GetLegPreTrans() (v int, err quickfix.MessageRejectError) {
var f field.LegPreTransField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegClientTradingCapacity gets LegClientTradingCapacity, Tag 23082.
func (m NoLegs) GetLegClientTradingCapacity() (v string, err quickfix.MessageRejectError) {
var f field.LegClientTradingCapacityField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegMiFIDMIC gets LegMiFIDMIC, Tag 23081.
func (m NoLegs) GetLegMiFIDMIC() (v string, err quickfix.MessageRejectError) {
var f field.LegMiFIDMICField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegAlgoQuote gets LegAlgoQuote, Tag 20397.
func (m NoLegs) GetLegAlgoQuote() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegAlgoQuoteField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegAlgoPrice gets LegAlgoPrice, Tag 20399.
func (m NoLegs) GetLegAlgoPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegAlgoPriceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegAlgoDV01 gets LegAlgoDV01, Tag 20401.
func (m NoLegs) GetLegAlgoDV01() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegAlgoDV01Field
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegAlgoNet gets LegAlgoNet, Tag 20403.
func (m NoLegs) GetLegAlgoNet() (v decimal.Decimal, err quickfix.MessageRejectError) {
var f field.LegAlgoNetField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasLegSymbol returns true if LegSymbol is present, Tag 600.
func (m NoLegs) HasLegSymbol() bool {
return m.Has(tag.LegSymbol)
}
// HasLegSymbolSfx returns true if LegSymbolSfx is present, Tag 601.
func (m NoLegs) HasLegSymbolSfx() bool {
return m.Has(tag.LegSymbolSfx)
}
// HasLegSecurityID returns true if LegSecurityID is present, Tag 602.
func (m NoLegs) HasLegSecurityID() bool {
return m.Has(tag.LegSecurityID)
}
// HasLegSecurityIDSource returns true if LegSecurityIDSource is present, Tag 603.
func (m NoLegs) HasLegSecurityIDSource() bool {
return m.Has(tag.LegSecurityIDSource)
}
// HasNoLegSecurityAltID returns true if NoLegSecurityAltID is present, Tag 604.
func (m NoLegs) HasNoLegSecurityAltID() bool {
return m.Has(tag.NoLegSecurityAltID)
}
// HasLegProduct returns true if LegProduct is present, Tag 607.
func (m NoLegs) HasLegProduct() bool {
return m.Has(tag.LegProduct)
}
// HasLegCFICode returns true if LegCFICode is present, Tag 608.
func (m NoLegs) HasLegCFICode() bool {
return m.Has(tag.LegCFICode)
}
// HasLegSecurityType returns true if LegSecurityType is present, Tag 609.
func (m NoLegs) HasLegSecurityType() bool {
return m.Has(tag.LegSecurityType)
}
// HasLegSecuritySubType returns true if LegSecuritySubType is present, Tag 764.
func (m NoLegs) HasLegSecuritySubType() bool {
return m.Has(tag.LegSecuritySubType)
}
// HasLegMaturityMonthYear returns true if LegMaturityMonthYear is present, Tag 610.
func (m NoLegs) HasLegMaturityMonthYear() bool {
return m.Has(tag.LegMaturityMonthYear)
}
// HasLegMaturityDate returns true if LegMaturityDate is present, Tag 611.
func (m NoLegs) HasLegMaturityDate() bool {
return m.Has(tag.LegMaturityDate)
}
// HasLegCouponPaymentDate returns true if LegCouponPaymentDate is present, Tag 248.
func (m NoLegs) HasLegCouponPaymentDate() bool {
return m.Has(tag.LegCouponPaymentDate)
}
// HasLegIssueDate returns true if LegIssueDate is present, Tag 249.
func (m NoLegs) HasLegIssueDate() bool {
return m.Has(tag.LegIssueDate)
}
// HasLegRepoCollateralSecurityType returns true if LegRepoCollateralSecurityType is present, Tag 250.
func (m NoLegs) HasLegRepoCollateralSecurityType() bool {
return m.Has(tag.LegRepoCollateralSecurityType)
}
// HasLegRepurchaseTerm returns true if LegRepurchaseTerm is present, Tag 251.
func (m NoLegs) HasLegRepurchaseTerm() bool {
return m.Has(tag.LegRepurchaseTerm)
}
// HasLegRepurchaseRate returns true if LegRepurchaseRate is present, Tag 252.
func (m NoLegs) HasLegRepurchaseRate() bool {
return m.Has(tag.LegRepurchaseRate)
}
// HasLegFactor returns true if LegFactor is present, Tag 253.
func (m NoLegs) HasLegFactor() bool {
return m.Has(tag.LegFactor)
}
// HasLegCreditRating returns true if LegCreditRating is present, Tag 257.
func (m NoLegs) HasLegCreditRating() bool {
return m.Has(tag.LegCreditRating)
}
// HasLegInstrRegistry returns true if LegInstrRegistry is present, Tag 599.
func (m NoLegs) HasLegInstrRegistry() bool {
return m.Has(tag.LegInstrRegistry)
}
// HasLegCountryOfIssue returns true if LegCountryOfIssue is present, Tag 596.
func (m NoLegs) HasLegCountryOfIssue() bool {
return m.Has(tag.LegCountryOfIssue)
}
// HasLegStateOrProvinceOfIssue returns true if LegStateOrProvinceOfIssue is present, Tag 597.
func (m NoLegs) HasLegStateOrProvinceOfIssue() bool {
return m.Has(tag.LegStateOrProvinceOfIssue)
}
// HasLegLocaleOfIssue returns true if LegLocaleOfIssue is present, Tag 598.
func (m NoLegs) HasLegLocaleOfIssue() bool {
return m.Has(tag.LegLocaleOfIssue)
}
// HasLegRedemptionDate returns true if LegRedemptionDate is present, Tag 254.
func (m NoLegs) HasLegRedemptionDate() bool {
return m.Has(tag.LegRedemptionDate)
}
// HasLegStrikePrice returns true if LegStrikePrice is present, Tag 612.
func (m NoLegs) HasLegStrikePrice() bool {
return m.Has(tag.LegStrikePrice)
}
// HasLegStrikeCurrency returns true if LegStrikeCurrency is present, Tag 942.
func (m NoLegs) HasLegStrikeCurrency() bool {
return m.Has(tag.LegStrikeCurrency)
}
// HasLegOptAttribute returns true if LegOptAttribute is present, Tag 613.
func (m NoLegs) HasLegOptAttribute() bool {
return m.Has(tag.LegOptAttribute)
}
// HasLegContractMultiplier returns true if LegContractMultiplier is present, Tag 614.
func (m NoLegs) HasLegContractMultiplier() bool {
return m.Has(tag.LegContractMultiplier)
}
// HasLegCouponRate returns true if LegCouponRate is present, Tag 615.
func (m NoLegs) HasLegCouponRate() bool {
return m.Has(tag.LegCouponRate)
}
// HasLegSecurityExchange returns true if LegSecurityExchange is present, Tag 616.
func (m NoLegs) HasLegSecurityExchange() bool {
return m.Has(tag.LegSecurityExchange)
}
// HasLegIssuer returns true if LegIssuer is present, Tag 617.
func (m NoLegs) HasLegIssuer() bool {
return m.Has(tag.LegIssuer)
}
// HasEncodedLegIssuerLen returns true if EncodedLegIssuerLen is present, Tag 618.
func (m NoLegs) HasEncodedLegIssuerLen() bool {
return m.Has(tag.EncodedLegIssuerLen)
}
// HasEncodedLegIssuer returns true if EncodedLegIssuer is present, Tag 619.
func (m NoLegs) HasEncodedLegIssuer() bool {
return m.Has(tag.EncodedLegIssuer)
}
// HasLegSecurityDesc returns true if LegSecurityDesc is present, Tag 620.
func (m NoLegs) HasLegSecurityDesc() bool {
return m.Has(tag.LegSecurityDesc)
}
// HasEncodedLegSecurityDescLen returns true if EncodedLegSecurityDescLen is present, Tag 621.
func (m NoLegs) HasEncodedLegSecurityDescLen() bool {
return m.Has(tag.EncodedLegSecurityDescLen)
}
// HasEncodedLegSecurityDesc returns true if EncodedLegSecurityDesc is present, Tag 622.
func (m NoLegs) HasEncodedLegSecurityDesc() bool {
return m.Has(tag.EncodedLegSecurityDesc)
}
// HasLegRatioQty returns true if LegRatioQty is present, Tag 623.
func (m NoLegs) HasLegRatioQty() bool {
return m.Has(tag.LegRatioQty)
}
// HasLegSide returns true if LegSide is present, Tag 624.
func (m NoLegs) HasLegSide() bool {
return m.Has(tag.LegSide)
}
// HasLegCurrency returns true if LegCurrency is present, Tag 556.
func (m NoLegs) HasLegCurrency() bool {
return m.Has(tag.LegCurrency)
}
// HasLegPool returns true if LegPool is present, Tag 740.
func (m NoLegs) HasLegPool() bool {
return m.Has(tag.LegPool)
}
// HasLegDatedDate returns true if LegDatedDate is present, Tag 739.
func (m NoLegs) HasLegDatedDate() bool {
return m.Has(tag.LegDatedDate)
}
// HasLegContractSettlMonth returns true if LegContractSettlMonth is present, Tag 955.
func (m NoLegs) HasLegContractSettlMonth() bool {
return m.Has(tag.LegContractSettlMonth)
}
// HasLegInterestAccrualDate returns true if LegInterestAccrualDate is present, Tag 956.
func (m NoLegs) HasLegInterestAccrualDate() bool {
return m.Has(tag.LegInterestAccrualDate)
}
// HasLegPrice returns true if LegPrice is present, Tag 566.
func (m NoLegs) HasLegPrice() bool {
return m.Has(tag.LegPrice)
}
// HasLegSecurityXMLLen returns true if LegSecurityXMLLen is present, Tag 1871.
func (m NoLegs) HasLegSecurityXMLLen() bool {
return m.Has(tag.LegSecurityXMLLen)
}
// HasLegSecurityXML returns true if LegSecurityXML is present, Tag 1872.
func (m NoLegs) HasLegSecurityXML() bool {
return m.Has(tag.LegSecurityXML)
}
// HasLegSecurityXMLSchema returns true if LegSecurityXMLSchema is present, Tag 1873.
func (m NoLegs) HasLegSecurityXMLSchema() bool {
return m.Has(tag.LegSecurityXMLSchema)
}
// HasLegQty returns true if LegQty is present, Tag 687.
func (m NoLegs) HasLegQty() bool {
return m.Has(tag.LegQty)
}
// HasLegOrderQty returns true if LegOrderQty is present, Tag 685.
func (m NoLegs) HasLegOrderQty() bool {
return m.Has(tag.LegOrderQty)
}
// HasLegSwapType returns true if LegSwapType is present, Tag 690.
func (m NoLegs) HasLegSwapType() bool {
return m.Has(tag.LegSwapType)
}
// HasLegSettlType returns true if LegSettlType is present, Tag 587.
func (m NoLegs) HasLegSettlType() bool {
return m.Has(tag.LegSettlType)
}
// HasLegSettlDate returns true if LegSettlDate is present, Tag 588.
func (m NoLegs) HasLegSettlDate() bool {
return m.Has(tag.LegSettlDate)
}
// HasNoLegStipulations returns true if NoLegStipulations is present, Tag 683.
func (m NoLegs) HasNoLegStipulations() bool {
return m.Has(tag.NoLegStipulations)
}
// HasNoNestedPartyIDs returns true if NoNestedPartyIDs is present, Tag 539.
func (m NoLegs) HasNoNestedPartyIDs() bool {
return m.Has(tag.NoNestedPartyIDs)
}
// HasLegBenchmarkCurveCurrency returns true if LegBenchmarkCurveCurrency is present, Tag 676.
func (m NoLegs) HasLegBenchmarkCurveCurrency() bool {
return m.Has(tag.LegBenchmarkCurveCurrency)
}
// HasLegBenchmarkCurveName returns true if LegBenchmarkCurveName is present, Tag 677.
func (m NoLegs) HasLegBenchmarkCurveName() bool {
return m.Has(tag.LegBenchmarkCurveName)
}
// HasLegBenchmarkCurvePoint returns true if LegBenchmarkCurvePoint is present, Tag 678.
func (m NoLegs) HasLegBenchmarkCurvePoint() bool {
return m.Has(tag.LegBenchmarkCurvePoint)
}
// HasLegBenchmarkPrice returns true if LegBenchmarkPrice is present, Tag 679.
func (m NoLegs) HasLegBenchmarkPrice() bool {
return m.Has(tag.LegBenchmarkPrice)
}
// HasLegBenchmarkYield returns true if LegBenchmarkYield is present, Tag 22571.
func (m NoLegs) HasLegBenchmarkYield() bool {
return m.Has(tag.LegBenchmarkYield)
}
// HasLegBenchmarkPriceType returns true if LegBenchmarkPriceType is present, Tag 680.
func (m NoLegs) HasLegBenchmarkPriceType() bool {
return m.Has(tag.LegBenchmarkPriceType)
}
// HasLegNotionalAmt returns true if LegNotionalAmt is present, Tag 9018.
func (m NoLegs) HasLegNotionalAmt() bool {
return m.Has(tag.LegNotionalAmt)
}
// HasLegPriceType returns true if LegPriceType is present, Tag 686.
func (m NoLegs) HasLegPriceType() bool {
return m.Has(tag.LegPriceType)
}
// HasTradeLegRefID returns true if TradeLegRefID is present, Tag 824.
func (m NoLegs) HasTradeLegRefID() bool {
return m.Has(tag.TradeLegRefID)
}
// HasLegISMN returns true if LegISMN is present, Tag 20047.
func (m NoLegs) HasLegISMN() bool {
return m.Has(tag.LegISMN)
}
// HasLegEndDateBusDayAdj returns true if LegEndDateBusDayAdj is present, Tag 20039.
func (m NoLegs) HasLegEndDateBusDayAdj() bool {
return m.Has(tag.LegEndDateBusDayAdj)
}
// HasLegOnTheRunValue returns true if LegOnTheRunValue is present, Tag 20053.
func (m NoLegs) HasLegOnTheRunValue() bool {
return m.Has(tag.LegOnTheRunValue)
}
// HasLegReopeningValue returns true if LegReopeningValue is present, Tag 20055.
func (m NoLegs) HasLegReopeningValue() bool {
return m.Has(tag.LegReopeningValue)
}
// HasLegCompQuote returns true if LegCompQuote is present, Tag 20046.
func (m NoLegs) HasLegCompQuote() bool {
return m.Has(tag.LegCompQuote)
}
// HasLegCMPSP returns true if LegCMPSP is present, Tag 20045.
func (m NoLegs) HasLegCMPSP() bool {
return m.Has(tag.LegCMPSP)
}
// HasLegBidPx returns true if LegBidPx is present, Tag 681.
func (m NoLegs) HasLegBidPx() bool {
return m.Has(tag.LegBidPx)
}
// HasLegOfferPx returns true if LegOfferPx is present, Tag 684.
func (m NoLegs) HasLegOfferPx() bool {
return m.Has(tag.LegOfferPx)
}
// HasLegTickSize returns true if LegTickSize is present, Tag 20048.
func (m NoLegs) HasLegTickSize() bool {
return m.Has(tag.LegTickSize)
}
// HasLegPositionEffect returns true if LegPositionEffect is present, Tag 564.
func (m NoLegs) HasLegPositionEffect() bool {
return m.Has(tag.LegPositionEffect)
}
// HasLegOutstandingAmount returns true if LegOutstandingAmount is present, Tag 20131.
func (m NoLegs) HasLegOutstandingAmount() bool {
return m.Has(tag.LegOutstandingAmount)
}
// HasLegCompositeSize returns true if LegCompositeSize is present, Tag 20133.
func (m NoLegs) HasLegCompositeSize() bool {
return m.Has(tag.LegCompositeSize)
}
// HasLegInventoryAmount returns true if LegInventoryAmount is present, Tag 20135.
func (m NoLegs) HasLegInventoryAmount() bool {
return m.Has(tag.LegInventoryAmount)
}
// HasLegInventorySpread returns true if LegInventorySpread is present, Tag 20137.
func (m NoLegs) HasLegInventorySpread() bool {
return m.Has(tag.LegInventorySpread)
}
// HasLegLeadManagers returns true if LegLeadManagers is present, Tag 20139.
func (m NoLegs) HasLegLeadManagers() bool {
return m.Has(tag.LegLeadManagers)
}
// HasNoLegCreditRating returns true if NoLegCreditRating is present, Tag 5118.
func (m NoLegs) HasNoLegCreditRating() bool {
return m.Has(tag.NoLegCreditRating)
}
// HasLegNoCalcProvided returns true if LegNoCalcProvided is present, Tag 20141.
func (m NoLegs) HasLegNoCalcProvided() bool {
return m.Has(tag.LegNoCalcProvided)
}
// HasLegBenchmarkSecurityID returns true if LegBenchmarkSecurityID is present, Tag 20142.
func (m NoLegs) HasLegBenchmarkSecurityID() bool {
return m.Has(tag.LegBenchmarkSecurityID)
}
// HasLegBenchmarkSecurityIDSource returns true if LegBenchmarkSecurityIDSource is present, Tag 20143.
func (m NoLegs) HasLegBenchmarkSecurityIDSource() bool {
return m.Has(tag.LegBenchmarkSecurityIDSource)
}
// HasLegBenchmarkSecurityAltID returns true if LegBenchmarkSecurityAltID is present, Tag 20159.
func (m NoLegs) HasLegBenchmarkSecurityAltID() bool {
return m.Has(tag.LegBenchmarkSecurityAltID)
}
// HasLegBenchmarkSecurityAltIDSource returns true if LegBenchmarkSecurityAltIDSource is present, Tag 20160.
func (m NoLegs) HasLegBenchmarkSecurityAltIDSource() bool {
return m.Has(tag.LegBenchmarkSecurityAltIDSource)
}
// HasLegTWBenchmarkSecurityID returns true if LegTWBenchmarkSecurityID is present, Tag 20151.
func (m NoLegs) HasLegTWBenchmarkSecurityID() bool {
return m.Has(tag.LegTWBenchmarkSecurityID)
}
// HasLegTWBenchmarkSecurityIDSource returns true if LegTWBenchmarkSecurityIDSource is present, Tag 20152.
func (m NoLegs) HasLegTWBenchmarkSecurityIDSource() bool {
return m.Has(tag.LegTWBenchmarkSecurityIDSource)
}
// HasLegTWBenchmarkSecurityAltID returns true if LegTWBenchmarkSecurityAltID is present, Tag 20163.
func (m NoLegs) HasLegTWBenchmarkSecurityAltID() bool {
return m.Has(tag.LegTWBenchmarkSecurityAltID)
}
// HasLegTWBenchmarkSecurityAltIDSource returns true if LegTWBenchmarkSecurityAltIDSource is present, Tag 20164.
func (m NoLegs) HasLegTWBenchmarkSecurityAltIDSource() bool {
return m.Has(tag.LegTWBenchmarkSecurityAltIDSource)
}
// HasLegBenchmarkSymbolSfx returns true if LegBenchmarkSymbolSfx is present, Tag 20144.
func (m NoLegs) HasLegBenchmarkSymbolSfx() bool {
return m.Has(tag.LegBenchmarkSymbolSfx)
}
// HasLegBenchmarkSymbolAltSfx returns true if LegBenchmarkSymbolAltSfx is present, Tag 20166.
func (m NoLegs) HasLegBenchmarkSymbolAltSfx() bool {
return m.Has(tag.LegBenchmarkSymbolAltSfx)
}
// HasLegTWBenchmarkSymbolSfx returns true if LegTWBenchmarkSymbolSfx is present, Tag 20154.
func (m NoLegs) HasLegTWBenchmarkSymbolSfx() bool {
return m.Has(tag.LegTWBenchmarkSymbolSfx)
}
// HasLegTWBenchmarkSymbolAltSfx returns true if LegTWBenchmarkSymbolAltSfx is present, Tag 20168.
func (m NoLegs) HasLegTWBenchmarkSymbolAltSfx() bool {
return m.Has(tag.LegTWBenchmarkSymbolAltSfx)
}
// HasLegTWBenchmarkPrice returns true if LegTWBenchmarkPrice is present, Tag 20173.
func (m NoLegs) HasLegTWBenchmarkPrice() bool {
return m.Has(tag.LegTWBenchmarkPrice)
}
// HasLegTWBenchmarkPriceType returns true if LegTWBenchmarkPriceType is present, Tag 20174.
func (m NoLegs) HasLegTWBenchmarkPriceType() bool {
return m.Has(tag.LegTWBenchmarkPriceType)
}
// HasLegDealerBenchmarkPrice returns true if LegDealerBenchmarkPrice is present, Tag 22573.
func (m NoLegs) HasLegDealerBenchmarkPrice() bool {
return m.Has(tag.LegDealerBenchmarkPrice)
}
// HasLegDealerBenchmarkYield returns true if LegDealerBenchmarkYield is present, Tag 22575.
func (m NoLegs) HasLegDealerBenchmarkYield() bool {
return m.Has(tag.LegDealerBenchmarkYield)
}
// HasLegInventoryTier returns true if LegInventoryTier is present, Tag 20146.
func (m NoLegs) HasLegInventoryTier() bool {
return m.Has(tag.LegInventoryTier)
}
// HasLegPricingTier returns true if LegPricingTier is present, Tag 20148.
func (m NoLegs) HasLegPricingTier() bool {
return m.Has(tag.LegPricingTier)
}
// HasLegFirstCouponPaymentDate returns true if LegFirstCouponPaymentDate is present, Tag 20176.
func (m NoLegs) HasLegFirstCouponPaymentDate() bool {
return m.Has(tag.LegFirstCouponPaymentDate)
}
// HasLegNetMoney returns true if LegNetMoney is present, Tag 6726.
func (m NoLegs) HasLegNetMoney() bool {
return m.Has(tag.LegNetMoney)
}
// HasLegGrossTradeAmt returns true if LegGrossTradeAmt is present, Tag 6723.
func (m NoLegs) HasLegGrossTradeAmt() bool {
return m.Has(tag.LegGrossTradeAmt)
}
// HasLegNextCouponRate returns true if LegNextCouponRate is present, Tag 20180.
func (m NoLegs) HasLegNextCouponRate() bool {
return m.Has(tag.LegNextCouponRate)
}
// HasLegYieldType returns true if LegYieldType is present, Tag 20177.
func (m NoLegs) HasLegYieldType() bool {
return m.Has(tag.LegYieldType)
}
// HasLegYield returns true if LegYield is present, Tag 20178.
func (m NoLegs) HasLegYield() bool {
return m.Has(tag.LegYield)
}
// HasLegIndustryCode returns true if LegIndustryCode is present, Tag 22567.
func (m NoLegs) HasLegIndustryCode() bool {
return m.Has(tag.LegIndustryCode)
}
// HasLegRoundLot returns true if LegRoundLot is present, Tag 22568.
func (m NoLegs) HasLegRoundLot() bool {
return m.Has(tag.LegRoundLot)
}
// HasLegMinTradeVol returns true if LegMinTradeVol is present, Tag 22569.
func (m NoLegs) HasLegMinTradeVol() bool {
return m.Has(tag.LegMinTradeVol)
}
// HasLegUseDealerBenchmark returns true if LegUseDealerBenchmark is present, Tag 22577.
func (m NoLegs) HasLegUseDealerBenchmark() bool {
return m.Has(tag.LegUseDealerBenchmark)
}
// HasLegTradeAxeIndicator returns true if LegTradeAxeIndicator is present, Tag 20234.
func (m NoLegs) HasLegTradeAxeIndicator() bool {
return m.Has(tag.LegTradeAxeIndicator)
}
// HasLegExecutionFeeSchedule returns true if LegExecutionFeeSchedule is present, Tag 20057.
func (m NoLegs) HasLegExecutionFeeSchedule() bool {
return m.Has(tag.LegExecutionFeeSchedule)
}
// HasLegExecutionFeeType returns true if LegExecutionFeeType is present, Tag 20059.
func (m NoLegs) HasLegExecutionFeeType() bool {
return m.Has(tag.LegExecutionFeeType)
}
// HasLegCallDate returns true if LegCallDate is present, Tag 20268.
func (m NoLegs) HasLegCallDate() bool {
return m.Has(tag.LegCallDate)
}
// HasLegCallType returns true if LegCallType is present, Tag 20269.
func (m NoLegs) HasLegCallType() bool {
return m.Has(tag.LegCallType)
}
// HasLegCallPrice returns true if LegCallPrice is present, Tag 20267.
func (m NoLegs) HasLegCallPrice() bool {
return m.Has(tag.LegCallPrice)
}
// HasLegFxRate returns true if LegFxRate is present, Tag 22644.
func (m NoLegs) HasLegFxRate() bool {
return m.Has(tag.LegFxRate)
}
// HasLegSettlCurrency returns true if LegSettlCurrency is present, Tag 675.
func (m NoLegs) HasLegSettlCurrency() bool {
return m.Has(tag.LegSettlCurrency)
}
// HasLegMarketSegment returns true if LegMarketSegment is present, Tag 20270.
func (m NoLegs) HasLegMarketSegment() bool {
return m.Has(tag.LegMarketSegment)
}
// HasLegRegulatoryType returns true if LegRegulatoryType is present, Tag 20277.
func (m NoLegs) HasLegRegulatoryType() bool {
return m.Has(tag.LegRegulatoryType)
}
// HasLegOnMTF returns true if LegOnMTF is present, Tag 23071.
func (m NoLegs) HasLegOnMTF() bool {
return m.Has(tag.LegOnMTF)
}
// HasLegLiquidity returns true if LegLiquidity is present, Tag 23075.
func (m NoLegs) HasLegLiquidity() bool {
return m.Has(tag.LegLiquidity)
}
// HasLegPreTrans returns true if LegPreTrans is present, Tag 23077.
func (m NoLegs) HasLegPreTrans() bool {
return m.Has(tag.LegPreTrans)
}
// HasLegClientTradingCapacity returns true if LegClientTradingCapacity is present, Tag 23082.
func (m NoLegs) HasLegClientTradingCapacity() bool {
return m.Has(tag.LegClientTradingCapacity)
}
// HasLegMiFIDMIC returns true if LegMiFIDMIC is present, Tag 23081.
func (m NoLegs) HasLegMiFIDMIC() bool {
return m.Has(tag.LegMiFIDMIC)
}
// HasLegAlgoQuote returns true if LegAlgoQuote is present, Tag 20397.
func (m NoLegs) HasLegAlgoQuote() bool {
return m.Has(tag.LegAlgoQuote)
}
// HasLegAlgoPrice returns true if LegAlgoPrice is present, Tag 20399.
func (m NoLegs) HasLegAlgoPrice() bool {
return m.Has(tag.LegAlgoPrice)
}
// HasLegAlgoDV01 returns true if LegAlgoDV01 is present, Tag 20401.
func (m NoLegs) HasLegAlgoDV01() bool {
return m.Has(tag.LegAlgoDV01)
}
// HasLegAlgoNet returns true if LegAlgoNet is present, Tag 20403.
func (m NoLegs) HasLegAlgoNet() bool {
return m.Has(tag.LegAlgoNet)
}
// NoLegSecurityAltID is a repeating group element, Tag 604.
type NoLegSecurityAltID struct {
*quickfix.Group
}
// SetLegSecurityAltID sets LegSecurityAltID, Tag 605.
func (m NoLegSecurityAltID) SetLegSecurityAltID(v string) {
m.Set(field.NewLegSecurityAltID(v))
}
// SetLegSecurityAltIDSource sets LegSecurityAltIDSource, Tag 606.
func (m NoLegSecurityAltID) SetLegSecurityAltIDSource(v string) {
m.Set(field.NewLegSecurityAltIDSource(v))
}
// GetLegSecurityAltID gets LegSecurityAltID, Tag 605.
func (m NoLegSecurityAltID) GetLegSecurityAltID() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityAltIDField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegSecurityAltIDSource gets LegSecurityAltIDSource, Tag 606.
func (m NoLegSecurityAltID) GetLegSecurityAltIDSource() (v string, err quickfix.MessageRejectError) {
var f field.LegSecurityAltIDSourceField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasLegSecurityAltID returns true if LegSecurityAltID is present, Tag 605.
func (m NoLegSecurityAltID) HasLegSecurityAltID() bool {
return m.Has(tag.LegSecurityAltID)
}
// HasLegSecurityAltIDSource returns true if LegSecurityAltIDSource is present, Tag 606.
func (m NoLegSecurityAltID) HasLegSecurityAltIDSource() bool {
return m.Has(tag.LegSecurityAltIDSource)
}
// NoLegSecurityAltIDRepeatingGroup is a repeating group, Tag 604.
type NoLegSecurityAltIDRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoLegSecurityAltIDRepeatingGroup returns an initialized, NoLegSecurityAltIDRepeatingGroup.
func NewNoLegSecurityAltIDRepeatingGroup() NoLegSecurityAltIDRepeatingGroup {
return NoLegSecurityAltIDRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoLegSecurityAltID,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.LegSecurityAltID),
quickfix.GroupElement(tag.LegSecurityAltIDSource),
},
),
}
}
// Add create and append a new NoLegSecurityAltID to this group.
func (m NoLegSecurityAltIDRepeatingGroup) Add() NoLegSecurityAltID {
g := m.RepeatingGroup.Add()
return NoLegSecurityAltID{g}
}
// Get returns the ith NoLegSecurityAltID in the NoLegSecurityAltIDRepeatinGroup.
func (m NoLegSecurityAltIDRepeatingGroup) Get(i int) NoLegSecurityAltID {
return NoLegSecurityAltID{m.RepeatingGroup.Get(i)}
}
// NoLegStipulations is a repeating group element, Tag 683.
type NoLegStipulations struct {
*quickfix.Group
}
// SetLegStipulationType sets LegStipulationType, Tag 688.
func (m NoLegStipulations) SetLegStipulationType(v string) {
m.Set(field.NewLegStipulationType(v))
}
// SetLegStipulationValue sets LegStipulationValue, Tag 689.
func (m NoLegStipulations) SetLegStipulationValue(v string) {
m.Set(field.NewLegStipulationValue(v))
}
// GetLegStipulationType gets LegStipulationType, Tag 688.
func (m NoLegStipulations) GetLegStipulationType() (v string, err quickfix.MessageRejectError) {
var f field.LegStipulationTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegStipulationValue gets LegStipulationValue, Tag 689.
func (m NoLegStipulations) GetLegStipulationValue() (v string, err quickfix.MessageRejectError) {
var f field.LegStipulationValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasLegStipulationType returns true if LegStipulationType is present, Tag 688.
func (m NoLegStipulations) HasLegStipulationType() bool {
return m.Has(tag.LegStipulationType)
}
// HasLegStipulationValue returns true if LegStipulationValue is present, Tag 689.
func (m NoLegStipulations) HasLegStipulationValue() bool {
return m.Has(tag.LegStipulationValue)
}
// NoLegStipulationsRepeatingGroup is a repeating group, Tag 683.
type NoLegStipulationsRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoLegStipulationsRepeatingGroup returns an initialized, NoLegStipulationsRepeatingGroup.
func NewNoLegStipulationsRepeatingGroup() NoLegStipulationsRepeatingGroup {
return NoLegStipulationsRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoLegStipulations,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.LegStipulationType),
quickfix.GroupElement(tag.LegStipulationValue),
},
),
}
}
// Add create and append a new NoLegStipulations to this group.
func (m NoLegStipulationsRepeatingGroup) Add() NoLegStipulations {
g := m.RepeatingGroup.Add()
return NoLegStipulations{g}
}
// Get returns the ith NoLegStipulations in the NoLegStipulationsRepeatinGroup.
func (m NoLegStipulationsRepeatingGroup) Get(i int) NoLegStipulations {
return NoLegStipulations{m.RepeatingGroup.Get(i)}
}
// 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)}
}
// NoLegCreditRating is a repeating group element, Tag 5118.
type NoLegCreditRating struct {
*quickfix.Group
}
// SetLegCreditRatingAgency sets LegCreditRatingAgency, Tag 5117.
func (m NoLegCreditRating) SetLegCreditRatingAgency(v int) {
m.Set(field.NewLegCreditRatingAgency(v))
}
// SetLegCreditRatingValue sets LegCreditRatingValue, Tag 20170.
func (m NoLegCreditRating) SetLegCreditRatingValue(v string) {
m.Set(field.NewLegCreditRatingValue(v))
}
// GetLegCreditRatingAgency gets LegCreditRatingAgency, Tag 5117.
func (m NoLegCreditRating) GetLegCreditRatingAgency() (v int, err quickfix.MessageRejectError) {
var f field.LegCreditRatingAgencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetLegCreditRatingValue gets LegCreditRatingValue, Tag 20170.
func (m NoLegCreditRating) GetLegCreditRatingValue() (v string, err quickfix.MessageRejectError) {
var f field.LegCreditRatingValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasLegCreditRatingAgency returns true if LegCreditRatingAgency is present, Tag 5117.
func (m NoLegCreditRating) HasLegCreditRatingAgency() bool {
return m.Has(tag.LegCreditRatingAgency)
}
// HasLegCreditRatingValue returns true if LegCreditRatingValue is present, Tag 20170.
func (m NoLegCreditRating) HasLegCreditRatingValue() bool {
return m.Has(tag.LegCreditRatingValue)
}
// NoLegCreditRatingRepeatingGroup is a repeating group, Tag 5118.
type NoLegCreditRatingRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoLegCreditRatingRepeatingGroup returns an initialized, NoLegCreditRatingRepeatingGroup.
func NewNoLegCreditRatingRepeatingGroup() NoLegCreditRatingRepeatingGroup {
return NoLegCreditRatingRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoLegCreditRating,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.LegCreditRatingAgency),
quickfix.GroupElement(tag.LegCreditRatingValue),
},
),
}
}
// Add create and append a new NoLegCreditRating to this group.
func (m NoLegCreditRatingRepeatingGroup) Add() NoLegCreditRating {
g := m.RepeatingGroup.Add()
return NoLegCreditRating{g}
}
// Get returns the ith NoLegCreditRating in the NoLegCreditRatingRepeatinGroup.
func (m NoLegCreditRatingRepeatingGroup) Get(i int) NoLegCreditRating {
return NoLegCreditRating{m.RepeatingGroup.Get(i)}
}
// NoLegsRepeatingGroup is a repeating group, Tag 555.
type NoLegsRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoLegsRepeatingGroup returns an initialized, NoLegsRepeatingGroup.
func NewNoLegsRepeatingGroup() NoLegsRepeatingGroup {
return NoLegsRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoLegs,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.LegSymbol),
quickfix.GroupElement(tag.LegSymbolSfx),
quickfix.GroupElement(tag.LegSecurityID),
quickfix.GroupElement(tag.LegSecurityIDSource),
NewNoLegSecurityAltIDRepeatingGroup(),
quickfix.GroupElement(tag.LegProduct),
quickfix.GroupElement(tag.LegCFICode),
quickfix.GroupElement(tag.LegSecurityType),
quickfix.GroupElement(tag.LegSecuritySubType),
quickfix.GroupElement(tag.LegMaturityMonthYear),
quickfix.GroupElement(tag.LegMaturityDate),
quickfix.GroupElement(tag.LegCouponPaymentDate),
quickfix.GroupElement(tag.LegIssueDate),
quickfix.GroupElement(tag.LegRepoCollateralSecurityType),
quickfix.GroupElement(tag.LegRepurchaseTerm),
quickfix.GroupElement(tag.LegRepurchaseRate),
quickfix.GroupElement(tag.LegFactor),
quickfix.GroupElement(tag.LegCreditRating),
quickfix.GroupElement(tag.LegInstrRegistry),
quickfix.GroupElement(tag.LegCountryOfIssue),
quickfix.GroupElement(tag.LegStateOrProvinceOfIssue),
quickfix.GroupElement(tag.LegLocaleOfIssue),
quickfix.GroupElement(tag.LegRedemptionDate),
quickfix.GroupElement(tag.LegStrikePrice),
quickfix.GroupElement(tag.LegStrikeCurrency),
quickfix.GroupElement(tag.LegOptAttribute),
quickfix.GroupElement(tag.LegContractMultiplier),
quickfix.GroupElement(tag.LegCouponRate),
quickfix.GroupElement(tag.LegSecurityExchange),
quickfix.GroupElement(tag.LegIssuer),
quickfix.GroupElement(tag.EncodedLegIssuerLen),
quickfix.GroupElement(tag.EncodedLegIssuer),
quickfix.GroupElement(tag.LegSecurityDesc),
quickfix.GroupElement(tag.EncodedLegSecurityDescLen),
quickfix.GroupElement(tag.EncodedLegSecurityDesc),
quickfix.GroupElement(tag.LegRatioQty),
quickfix.GroupElement(tag.LegSide),
quickfix.GroupElement(tag.LegCurrency),
quickfix.GroupElement(tag.LegPool),
quickfix.GroupElement(tag.LegDatedDate),
quickfix.GroupElement(tag.LegContractSettlMonth),
quickfix.GroupElement(tag.LegInterestAccrualDate),
quickfix.GroupElement(tag.LegPrice),
quickfix.GroupElement(tag.LegSecurityXMLLen),
quickfix.GroupElement(tag.LegSecurityXML),
quickfix.GroupElement(tag.LegSecurityXMLSchema),
quickfix.GroupElement(tag.LegQty),
quickfix.GroupElement(tag.LegOrderQty),
quickfix.GroupElement(tag.LegSwapType),
quickfix.GroupElement(tag.LegSettlType),
quickfix.GroupElement(tag.LegSettlDate),
NewNoLegStipulationsRepeatingGroup(),
NewNoNestedPartyIDsRepeatingGroup(),
quickfix.GroupElement(tag.LegBenchmarkCurveCurrency),
quickfix.GroupElement(tag.LegBenchmarkCurveName),
quickfix.GroupElement(tag.LegBenchmarkCurvePoint),
quickfix.GroupElement(tag.LegBenchmarkPrice),
quickfix.GroupElement(tag.LegBenchmarkYield),
quickfix.GroupElement(tag.LegBenchmarkPriceType),
quickfix.GroupElement(tag.LegNotionalAmt),
quickfix.GroupElement(tag.LegPriceType),
quickfix.GroupElement(tag.TradeLegRefID),
quickfix.GroupElement(tag.LegISMN),
quickfix.GroupElement(tag.LegEndDateBusDayAdj),
quickfix.GroupElement(tag.LegOnTheRunValue),
quickfix.GroupElement(tag.LegReopeningValue),
quickfix.GroupElement(tag.LegCompQuote),
quickfix.GroupElement(tag.LegCMPSP),
quickfix.GroupElement(tag.LegBidPx),
quickfix.GroupElement(tag.LegOfferPx),
quickfix.GroupElement(tag.LegTickSize),
quickfix.GroupElement(tag.LegPositionEffect),
quickfix.GroupElement(tag.LegOutstandingAmount),
quickfix.GroupElement(tag.LegCompositeSize),
quickfix.GroupElement(tag.LegInventoryAmount),
quickfix.GroupElement(tag.LegInventorySpread),
quickfix.GroupElement(tag.LegLeadManagers),
NewNoLegCreditRatingRepeatingGroup(),
quickfix.GroupElement(tag.LegNoCalcProvided),
quickfix.GroupElement(tag.LegBenchmarkSecurityID),
quickfix.GroupElement(tag.LegBenchmarkSecurityIDSource),
quickfix.GroupElement(tag.LegBenchmarkSecurityAltID),
quickfix.GroupElement(tag.LegBenchmarkSecurityAltIDSource),
quickfix.GroupElement(tag.LegTWBenchmarkSecurityID),
quickfix.GroupElement(tag.LegTWBenchmarkSecurityIDSource),
quickfix.GroupElement(tag.LegTWBenchmarkSecurityAltID),
quickfix.GroupElement(tag.LegTWBenchmarkSecurityAltIDSource),
quickfix.GroupElement(tag.LegBenchmarkSymbolSfx),
quickfix.GroupElement(tag.LegBenchmarkSymbolAltSfx),
quickfix.GroupElement(tag.LegTWBenchmarkSymbolSfx),
quickfix.GroupElement(tag.LegTWBenchmarkSymbolAltSfx),
quickfix.GroupElement(tag.LegTWBenchmarkPrice),
quickfix.GroupElement(tag.LegTWBenchmarkPriceType),
quickfix.GroupElement(tag.LegDealerBenchmarkPrice),
quickfix.GroupElement(tag.LegDealerBenchmarkYield),
quickfix.GroupElement(tag.LegInventoryTier),
quickfix.GroupElement(tag.LegPricingTier),
quickfix.GroupElement(tag.LegFirstCouponPaymentDate),
quickfix.GroupElement(tag.LegNetMoney),
quickfix.GroupElement(tag.LegGrossTradeAmt),
quickfix.GroupElement(tag.LegNextCouponRate),
quickfix.GroupElement(tag.LegYieldType),
quickfix.GroupElement(tag.LegYield),
quickfix.GroupElement(tag.LegIndustryCode),
quickfix.GroupElement(tag.LegRoundLot),
quickfix.GroupElement(tag.LegMinTradeVol),
quickfix.GroupElement(tag.LegUseDealerBenchmark),
quickfix.GroupElement(tag.LegTradeAxeIndicator),
quickfix.GroupElement(tag.LegExecutionFeeSchedule),
quickfix.GroupElement(tag.LegExecutionFeeType),
quickfix.GroupElement(tag.LegCallDate),
quickfix.GroupElement(tag.LegCallType),
quickfix.GroupElement(tag.LegCallPrice),
quickfix.GroupElement(tag.LegFxRate),
quickfix.GroupElement(tag.LegSettlCurrency),
quickfix.GroupElement(tag.LegMarketSegment),
quickfix.GroupElement(tag.LegRegulatoryType),
quickfix.GroupElement(tag.LegOnMTF),
quickfix.GroupElement(tag.LegLiquidity),
quickfix.GroupElement(tag.LegPreTrans),
quickfix.GroupElement(tag.LegClientTradingCapacity),
quickfix.GroupElement(tag.LegMiFIDMIC),
quickfix.GroupElement(tag.LegAlgoQuote),
quickfix.GroupElement(tag.LegAlgoPrice),
quickfix.GroupElement(tag.LegAlgoDV01),
quickfix.GroupElement(tag.LegAlgoNet),
},
),
}
}
// Add create and append a new NoLegs to this group.
func (m NoLegsRepeatingGroup) Add() NoLegs {
g := m.RepeatingGroup.Add()
return NoLegs{g}
}
// Get returns the ith NoLegs in the NoLegsRepeatinGroup.
func (m NoLegsRepeatingGroup) Get(i int) NoLegs {
return NoLegs{m.RepeatingGroup.Get(i)}
}
// NoQuoteQualifiers is a repeating group element, Tag 735.
type NoQuoteQualifiers struct {
*quickfix.Group
}
// SetQuoteQualifier sets QuoteQualifier, Tag 695.
func (m NoQuoteQualifiers) SetQuoteQualifier(v string) {
m.Set(field.NewQuoteQualifier(v))
}
// GetQuoteQualifier gets QuoteQualifier, Tag 695.
func (m NoQuoteQualifiers) GetQuoteQualifier() (v string, err quickfix.MessageRejectError) {
var f field.QuoteQualifierField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasQuoteQualifier returns true if QuoteQualifier is present, Tag 695.
func (m NoQuoteQualifiers) HasQuoteQualifier() bool {
return m.Has(tag.QuoteQualifier)
}
// NoQuoteQualifiersRepeatingGroup is a repeating group, Tag 735.
type NoQuoteQualifiersRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoQuoteQualifiersRepeatingGroup returns an initialized, NoQuoteQualifiersRepeatingGroup.
func NewNoQuoteQualifiersRepeatingGroup() NoQuoteQualifiersRepeatingGroup {
return NoQuoteQualifiersRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoQuoteQualifiers,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.QuoteQualifier),
},
),
}
}
// Add create and append a new NoQuoteQualifiers to this group.
func (m NoQuoteQualifiersRepeatingGroup) Add() NoQuoteQualifiers {
g := m.RepeatingGroup.Add()
return NoQuoteQualifiers{g}
}
// Get returns the ith NoQuoteQualifiers in the NoQuoteQualifiersRepeatinGroup.
func (m NoQuoteQualifiersRepeatingGroup) Get(i int) NoQuoteQualifiers {
return NoQuoteQualifiers{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))
}
// SetPartyRoleQualifier sets PartyRoleQualifier, Tag 2376.
func (m NoPartyIDs) SetPartyRoleQualifier(v int) {
m.Set(field.NewPartyRoleQualifier(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
}
// GetPartyRoleQualifier gets PartyRoleQualifier, Tag 2376.
func (m NoPartyIDs) GetPartyRoleQualifier() (v int, err quickfix.MessageRejectError) {
var f field.PartyRoleQualifierField
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)
}
// HasPartyRoleQualifier returns true if PartyRoleQualifier is present, Tag 2376.
func (m NoPartyIDs) HasPartyRoleQualifier() bool {
return m.Has(tag.PartyRoleQualifier)
}
// 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),
quickfix.GroupElement(tag.PartyRoleQualifier),
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)}
}
// NoCreditRating is a repeating group element, Tag 5114.
type NoCreditRating struct {
*quickfix.Group
}
// SetCreditRatingAgency sets CreditRatingAgency, Tag 5113.
func (m NoCreditRating) SetCreditRatingAgency(v int) {
m.Set(field.NewCreditRatingAgency(v))
}
// SetCreditRatingValue sets CreditRatingValue, Tag 20169.
func (m NoCreditRating) SetCreditRatingValue(v string) {
m.Set(field.NewCreditRatingValue(v))
}
// GetCreditRatingAgency gets CreditRatingAgency, Tag 5113.
func (m NoCreditRating) GetCreditRatingAgency() (v int, err quickfix.MessageRejectError) {
var f field.CreditRatingAgencyField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetCreditRatingValue gets CreditRatingValue, Tag 20169.
func (m NoCreditRating) GetCreditRatingValue() (v string, err quickfix.MessageRejectError) {
var f field.CreditRatingValueField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasCreditRatingAgency returns true if CreditRatingAgency is present, Tag 5113.
func (m NoCreditRating) HasCreditRatingAgency() bool {
return m.Has(tag.CreditRatingAgency)
}
// HasCreditRatingValue returns true if CreditRatingValue is present, Tag 20169.
func (m NoCreditRating) HasCreditRatingValue() bool {
return m.Has(tag.CreditRatingValue)
}
// NoCreditRatingRepeatingGroup is a repeating group, Tag 5114.
type NoCreditRatingRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoCreditRatingRepeatingGroup returns an initialized, NoCreditRatingRepeatingGroup.
func NewNoCreditRatingRepeatingGroup() NoCreditRatingRepeatingGroup {
return NoCreditRatingRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoCreditRating,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.CreditRatingAgency),
quickfix.GroupElement(tag.CreditRatingValue),
},
),
}
}
// Add create and append a new NoCreditRating to this group.
func (m NoCreditRatingRepeatingGroup) Add() NoCreditRating {
g := m.RepeatingGroup.Add()
return NoCreditRating{g}
}
// Get returns the ith NoCreditRating in the NoCreditRatingRepeatinGroup.
func (m NoCreditRatingRepeatingGroup) Get(i int) NoCreditRating {
return NoCreditRating{m.RepeatingGroup.Get(i)}
}
// NoTrdRegPublications is a repeating group element, Tag 2668.
type NoTrdRegPublications struct {
*quickfix.Group
}
// SetTrdRegPublicationType sets TrdRegPublicationType, Tag 2669.
func (m NoTrdRegPublications) SetTrdRegPublicationType(v int) {
m.Set(field.NewTrdRegPublicationType(v))
}
// SetTrdRegPublicationReason sets TrdRegPublicationReason, Tag 2670.
func (m NoTrdRegPublications) SetTrdRegPublicationReason(v int) {
m.Set(field.NewTrdRegPublicationReason(v))
}
// GetTrdRegPublicationType gets TrdRegPublicationType, Tag 2669.
func (m NoTrdRegPublications) GetTrdRegPublicationType() (v int, err quickfix.MessageRejectError) {
var f field.TrdRegPublicationTypeField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// GetTrdRegPublicationReason gets TrdRegPublicationReason, Tag 2670.
func (m NoTrdRegPublications) GetTrdRegPublicationReason() (v int, err quickfix.MessageRejectError) {
var f field.TrdRegPublicationReasonField
if err = m.Get(&f); err == nil {
v = f.Value()
}
return
}
// HasTrdRegPublicationType returns true if TrdRegPublicationType is present, Tag 2669.
func (m NoTrdRegPublications) HasTrdRegPublicationType() bool {
return m.Has(tag.TrdRegPublicationType)
}
// HasTrdRegPublicationReason returns true if TrdRegPublicationReason is present, Tag 2670.
func (m NoTrdRegPublications) HasTrdRegPublicationReason() bool {
return m.Has(tag.TrdRegPublicationReason)
}
// NoTrdRegPublicationsRepeatingGroup is a repeating group, Tag 2668.
type NoTrdRegPublicationsRepeatingGroup struct {
*quickfix.RepeatingGroup
}
// NewNoTrdRegPublicationsRepeatingGroup returns an initialized, NoTrdRegPublicationsRepeatingGroup.
func NewNoTrdRegPublicationsRepeatingGroup() NoTrdRegPublicationsRepeatingGroup {
return NoTrdRegPublicationsRepeatingGroup{
quickfix.NewRepeatingGroup(
tag.NoTrdRegPublications,
quickfix.GroupTemplate{
quickfix.GroupElement(tag.TrdRegPublicationType),
quickfix.GroupElement(tag.TrdRegPublicationReason),
},
),
}
}
// Add create and append a new NoTrdRegPublications to this group.
func (m NoTrdRegPublicationsRepeatingGroup) Add() NoTrdRegPublications {
g := m.RepeatingGroup.Add()
return NoTrdRegPublications{g}
}
// Get returns the ith NoTrdRegPublications in the NoTrdRegPublicationsRepeatinGroup.
func (m NoTrdRegPublicationsRepeatingGroup) Get(i int) NoTrdRegPublications {
return NoTrdRegPublications{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.SecurityXMLLen),
quickfix.GroupElement(tag.SecurityXML),
quickfix.GroupElement(tag.SecurityXMLSchema),
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.AgreementDesc),
quickfix.GroupElement(tag.AgreementID),
quickfix.GroupElement(tag.AgreementDate),
quickfix.GroupElement(tag.AgreementCurrency),
quickfix.GroupElement(tag.TerminationType),
quickfix.GroupElement(tag.StartDate),
quickfix.GroupElement(tag.EndDate),
quickfix.GroupElement(tag.DeliveryType),
quickfix.GroupElement(tag.MarginRatio),
NewNoUnderlyingsRepeatingGroup(),
quickfix.GroupElement(tag.PrevClosePx),
quickfix.GroupElement(tag.QuoteRequestType),
quickfix.GroupElement(tag.QuoteType),
quickfix.GroupElement(tag.TradingSessionID),
quickfix.GroupElement(tag.TradingSessionSubID),
quickfix.GroupElement(tag.TradeOriginationDate),
quickfix.GroupElement(tag.Side),
quickfix.GroupElement(tag.QtyType),
quickfix.GroupElement(tag.OrderQty),
quickfix.GroupElement(tag.CashOrderQty),
quickfix.GroupElement(tag.OrderPercent),
quickfix.GroupElement(tag.RoundingDirection),
quickfix.GroupElement(tag.RoundingModulus),
quickfix.GroupElement(tag.SettlType),
quickfix.GroupElement(tag.SettlDate),
quickfix.GroupElement(tag.SettlDate2),
quickfix.GroupElement(tag.AuctionDate),
quickfix.GroupElement(tag.OrderQty2),
quickfix.GroupElement(tag.Currency),
NewNoStipulationsRepeatingGroup(),
quickfix.GroupElement(tag.Account),
quickfix.GroupElement(tag.AcctIDSource),
quickfix.GroupElement(tag.AccountType),
quickfix.GroupElement(tag.TradeInfoSetting),
quickfix.GroupElement(tag.DelayTime),
quickfix.GroupElement(tag.IndustryCode),
quickfix.GroupElement(tag.Restructuring),
quickfix.GroupElement(tag.Seniority),
quickfix.GroupElement(tag.CoopStatus),
quickfix.GroupElement(tag.SalesOBOPrice),
quickfix.GroupElement(tag.TrdType),
quickfix.GroupElement(tag.DealerVoiceFlag),
NewNoLegsRepeatingGroup(),
NewNoQuoteQualifiersRepeatingGroup(),
quickfix.GroupElement(tag.QuotePriceType),
quickfix.GroupElement(tag.OrdType),
quickfix.GroupElement(tag.ValidUntilTime),
quickfix.GroupElement(tag.ExpireTime),
quickfix.GroupElement(tag.TransactTime),
quickfix.GroupElement(tag.Spread),
quickfix.GroupElement(tag.BenchmarkCurveCurrency),
quickfix.GroupElement(tag.BenchmarkCurveName),
quickfix.GroupElement(tag.BenchmarkCurvePoint),
quickfix.GroupElement(tag.BenchmarkPrice),
quickfix.GroupElement(tag.BenchmarkYield),
quickfix.GroupElement(tag.BenchmarkPriceType),
quickfix.GroupElement(tag.BenchmarkSecurityID),
quickfix.GroupElement(tag.BenchmarkSecurityIDSource),
quickfix.GroupElement(tag.PriceType),
quickfix.GroupElement(tag.Price),
quickfix.GroupElement(tag.Price2),
quickfix.GroupElement(tag.YieldType),
quickfix.GroupElement(tag.Yield),
quickfix.GroupElement(tag.YieldCalcDate),
quickfix.GroupElement(tag.YieldRedemptionDate),
quickfix.GroupElement(tag.YieldRedemptionPrice),
quickfix.GroupElement(tag.YieldRedemptionPriceType),
NewNoPartyIDsRepeatingGroup(),
quickfix.GroupElement(tag.TargetStrategy),
quickfix.GroupElement(tag.NotionalAmt),
quickfix.GroupElement(tag.DJSTOXX),
quickfix.GroupElement(tag.MSCI),
quickfix.GroupElement(tag.ReferencePrice),
quickfix.GroupElement(tag.TickSize),
quickfix.GroupElement(tag.MinQty),
quickfix.GroupElement(tag.ListID),
quickfix.GroupElement(tag.TotalNumOfParts),
quickfix.GroupElement(tag.PartNum),
quickfix.GroupElement(tag.TradeDate),
quickfix.GroupElement(tag.TestMessageIndicator),
quickfix.GroupElement(tag.NoOfDealers),
quickfix.GroupElement(tag.NoOfOriginalDealers),
quickfix.GroupElement(tag.NoOfRemovedDealers),
quickfix.GroupElement(tag.CanRespond),
quickfix.GroupElement(tag.CanQuote),
quickfix.GroupElement(tag.BookName),
quickfix.GroupElement(tag.TraderList),
quickfix.GroupElement(tag.OwnerTraderID),
quickfix.GroupElement(tag.TimeoutPeriod),
quickfix.GroupElement(tag.NewTimePeriod),
quickfix.GroupElement(tag.QuoteTimePeriod),
quickfix.GroupElement(tag.ConfirmTimePeriod),
quickfix.GroupElement(tag.LifeTimePeriod),
quickfix.GroupElement(tag.DoneTimePeriod),
quickfix.GroupElement(tag.DueinTimePeriod),
quickfix.GroupElement(tag.DuebyTimePeriod),
quickfix.GroupElement(tag.GoodforTimePeriod),
quickfix.GroupElement(tag.SubjectTimePeriod),
quickfix.GroupElement(tag.MultipleTickets),
quickfix.GroupElement(tag.ISMN),
quickfix.GroupElement(tag.EndDateBusDayAdj),
quickfix.GroupElement(tag.OnTheRunValue),
quickfix.GroupElement(tag.ReopeningValue),
quickfix.GroupElement(tag.CMPB),
quickfix.GroupElement(tag.CMPA),
quickfix.GroupElement(tag.CMPSP),
quickfix.GroupElement(tag.CompQuote),
quickfix.GroupElement(tag.BidPx),
quickfix.GroupElement(tag.OfferPx),
quickfix.GroupElement(tag.PositionEffect),
quickfix.GroupElement(tag.SwapType),
quickfix.GroupElement(tag.SWSPRD),
quickfix.GroupElement(tag.NegotiationType),
quickfix.GroupElement(tag.CanRequote),
quickfix.GroupElement(tag.CanCounter),
quickfix.GroupElement(tag.RequoteTimePeriod),
quickfix.GroupElement(tag.OutstandingAmount),
quickfix.GroupElement(tag.CompositeSize),
quickfix.GroupElement(tag.InventoryAmount),
quickfix.GroupElement(tag.InventorySpread),
quickfix.GroupElement(tag.LeadManagers),
quickfix.GroupElement(tag.RoundLot),
quickfix.GroupElement(tag.MinTradeVol),
NewNoCreditRatingRepeatingGroup(),
quickfix.GroupElement(tag.NoCalcProvided),
quickfix.GroupElement(tag.BenchmarkSymbolSfx),
quickfix.GroupElement(tag.BenchmarkSymbolAltSfx),
quickfix.GroupElement(tag.TWBenchmarkSymbolSfx),
quickfix.GroupElement(tag.TWBenchmarkSymbolAltSfx),
quickfix.GroupElement(tag.TWBenchmarkSecurityID),
quickfix.GroupElement(tag.TWBenchmarkSecurityIDSource),
quickfix.GroupElement(tag.BenchmarkSecurityAltID),
quickfix.GroupElement(tag.BenchmarkSecurityAltIDSource),
quickfix.GroupElement(tag.TWBenchmarkSecurityAltID),
quickfix.GroupElement(tag.TWBenchmarkSecurityAltIDSource),
quickfix.GroupElement(tag.TWBenchmarkPrice),
quickfix.GroupElement(tag.TWBenchmarkPriceType),
quickfix.GroupElement(tag.DealerBenchmarkPrice),
quickfix.GroupElement(tag.DealerBenchmarkYield),
quickfix.GroupElement(tag.UseDealerBenchmark),
quickfix.GroupElement(tag.InventoryTier),
quickfix.GroupElement(tag.PricingTier),
quickfix.GroupElement(tag.FirstCouponPaymentDate),
quickfix.GroupElement(tag.NetMoney),
quickfix.GroupElement(tag.GrossTradeAmt),
quickfix.GroupElement(tag.NextCouponRate),
quickfix.GroupElement(tag.TradeAxeIndicator),
quickfix.GroupElement(tag.ExecutionFeeSchedule),
quickfix.GroupElement(tag.ExecutionFeeType),
quickfix.GroupElement(tag.ExecutionFeeMarkup),
quickfix.GroupElement(tag.ExecutionFeeAmount),
quickfix.GroupElement(tag.NegotiationMethod),
quickfix.GroupElement(tag.NegotiationTime),
quickfix.GroupElement(tag.Intermediated),
quickfix.GroupElement(tag.CallDate),
quickfix.GroupElement(tag.CallType),
quickfix.GroupElement(tag.CallPrice),
quickfix.GroupElement(tag.FxRate),
quickfix.GroupElement(tag.SettlCurrency),
quickfix.GroupElement(tag.MarketSegment),
quickfix.GroupElement(tag.RegulatoryType),
quickfix.GroupElement(tag.Rationale),
quickfix.GroupElement(tag.A2ATrade),
quickfix.GroupElement(tag.PreTradeAnonymity),
quickfix.GroupElement(tag.OnMTF),
quickfix.GroupElement(tag.Liquidity),
quickfix.GroupElement(tag.PreTrans),
quickfix.GroupElement(tag.ClientTradingCapacity),
quickfix.GroupElement(tag.MiFIDMIC),
NewNoTrdRegPublicationsRepeatingGroup(),
quickfix.GroupElement(tag.PortfolioTrade),
quickfix.GroupElement(tag.AlgoQuote),
quickfix.GroupElement(tag.AlgoPrice),
quickfix.GroupElement(tag.AlgoDV01),
quickfix.GroupElement(tag.AlgoNet),
quickfix.GroupElement(tag.LimitCover),
quickfix.GroupElement(tag.ContextMidLevel),
quickfix.GroupElement(tag.InContextLimit),
quickfix.GroupElement(tag.NetCross),
quickfix.GroupElement(tag.PriceSrcVal),
quickfix.GroupElement(tag.PriceSrcTime),
quickfix.GroupElement(tag.PriceSrcSide),
quickfix.GroupElement(tag.PriceSrcOffType),
quickfix.GroupElement(tag.UniqueInQid),
},
),
}
}
// 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)}
}