10723 lines
315 KiB
Go
10723 lines
315 KiB
Go
// Code generated by quickfix. DO NOT EDIT.
|
|
package executionreport
|
|
|
|
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"
|
|
)
|
|
|
|
// ExecutionReport is the fix50sp2 ExecutionReport type, MsgType = 8.
|
|
type ExecutionReport struct {
|
|
fixt11.Header
|
|
*quickfix.Body
|
|
fixt11.Trailer
|
|
Message *quickfix.Message
|
|
}
|
|
|
|
// FromMessage creates a ExecutionReport from a quickfix.Message instance.
|
|
func FromMessage(m *quickfix.Message) ExecutionReport {
|
|
return ExecutionReport{
|
|
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 ExecutionReport) ToMessage() *quickfix.Message {
|
|
return m.Message
|
|
}
|
|
|
|
// New returns a ExecutionReport initialized with the required fields for ExecutionReport.
|
|
func New(orderid field.OrderIDField, execid field.ExecIDField, exectype field.ExecTypeField, ordstatus field.OrdStatusField, leavesqty field.LeavesQtyField, cumqty field.CumQtyField, avgpx field.AvgPxField) (m ExecutionReport) {
|
|
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("8"))
|
|
m.Set(orderid)
|
|
m.Set(execid)
|
|
m.Set(exectype)
|
|
m.Set(ordstatus)
|
|
m.Set(leavesqty)
|
|
m.Set(cumqty)
|
|
m.Set(avgpx)
|
|
|
|
return
|
|
}
|
|
|
|
// A RouteOut is the callback type that should be implemented for routing Message.
|
|
type RouteOut func(msg ExecutionReport, 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", "8", r
|
|
}
|
|
|
|
// SetAccount sets Account, Tag 1.
|
|
func (m ExecutionReport) SetAccount(v string) {
|
|
m.Set(field.NewAccount(v))
|
|
}
|
|
|
|
// SetAvgPx sets AvgPx, Tag 6.
|
|
func (m ExecutionReport) SetAvgPx(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewAvgPx(value, scale))
|
|
}
|
|
|
|
// SetClOrdID sets ClOrdID, Tag 11.
|
|
func (m ExecutionReport) SetClOrdID(v string) {
|
|
m.Set(field.NewClOrdID(v))
|
|
}
|
|
|
|
// SetCommission sets Commission, Tag 12.
|
|
func (m ExecutionReport) SetCommission(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewCommission(value, scale))
|
|
}
|
|
|
|
// SetCommType sets CommType, Tag 13.
|
|
func (m ExecutionReport) SetCommType(v enum.CommType) {
|
|
m.Set(field.NewCommType(v))
|
|
}
|
|
|
|
// SetCumQty sets CumQty, Tag 14.
|
|
func (m ExecutionReport) SetCumQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewCumQty(value, scale))
|
|
}
|
|
|
|
// SetCurrency sets Currency, Tag 15.
|
|
func (m ExecutionReport) SetCurrency(v string) {
|
|
m.Set(field.NewCurrency(v))
|
|
}
|
|
|
|
// SetExecID sets ExecID, Tag 17.
|
|
func (m ExecutionReport) SetExecID(v string) {
|
|
m.Set(field.NewExecID(v))
|
|
}
|
|
|
|
// SetExecInst sets ExecInst, Tag 18.
|
|
func (m ExecutionReport) SetExecInst(v enum.ExecInst) {
|
|
m.Set(field.NewExecInst(v))
|
|
}
|
|
|
|
// SetExecRefID sets ExecRefID, Tag 19.
|
|
func (m ExecutionReport) SetExecRefID(v string) {
|
|
m.Set(field.NewExecRefID(v))
|
|
}
|
|
|
|
// SetHandlInst sets HandlInst, Tag 21.
|
|
func (m ExecutionReport) SetHandlInst(v enum.HandlInst) {
|
|
m.Set(field.NewHandlInst(v))
|
|
}
|
|
|
|
// SetSecurityIDSource sets SecurityIDSource, Tag 22.
|
|
func (m ExecutionReport) SetSecurityIDSource(v enum.SecurityIDSource) {
|
|
m.Set(field.NewSecurityIDSource(v))
|
|
}
|
|
|
|
// SetLastCapacity sets LastCapacity, Tag 29.
|
|
func (m ExecutionReport) SetLastCapacity(v enum.LastCapacity) {
|
|
m.Set(field.NewLastCapacity(v))
|
|
}
|
|
|
|
// SetLastMkt sets LastMkt, Tag 30.
|
|
func (m ExecutionReport) SetLastMkt(v string) {
|
|
m.Set(field.NewLastMkt(v))
|
|
}
|
|
|
|
// SetLastPx sets LastPx, Tag 31.
|
|
func (m ExecutionReport) SetLastPx(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLastPx(value, scale))
|
|
}
|
|
|
|
// SetLastQty sets LastQty, Tag 32.
|
|
func (m ExecutionReport) SetLastQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLastQty(value, scale))
|
|
}
|
|
|
|
// SetOrderID sets OrderID, Tag 37.
|
|
func (m ExecutionReport) SetOrderID(v string) {
|
|
m.Set(field.NewOrderID(v))
|
|
}
|
|
|
|
// SetOrderQty sets OrderQty, Tag 38.
|
|
func (m ExecutionReport) SetOrderQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewOrderQty(value, scale))
|
|
}
|
|
|
|
// SetOrdStatus sets OrdStatus, Tag 39.
|
|
func (m ExecutionReport) SetOrdStatus(v enum.OrdStatus) {
|
|
m.Set(field.NewOrdStatus(v))
|
|
}
|
|
|
|
// SetOrdType sets OrdType, Tag 40.
|
|
func (m ExecutionReport) SetOrdType(v enum.OrdType) {
|
|
m.Set(field.NewOrdType(v))
|
|
}
|
|
|
|
// SetOrigClOrdID sets OrigClOrdID, Tag 41.
|
|
func (m ExecutionReport) SetOrigClOrdID(v string) {
|
|
m.Set(field.NewOrigClOrdID(v))
|
|
}
|
|
|
|
// SetPrice sets Price, Tag 44.
|
|
func (m ExecutionReport) SetPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewPrice(value, scale))
|
|
}
|
|
|
|
// SetSecurityID sets SecurityID, Tag 48.
|
|
func (m ExecutionReport) SetSecurityID(v string) {
|
|
m.Set(field.NewSecurityID(v))
|
|
}
|
|
|
|
// SetSide sets Side, Tag 54.
|
|
func (m ExecutionReport) SetSide(v enum.Side) {
|
|
m.Set(field.NewSide(v))
|
|
}
|
|
|
|
// SetSymbol sets Symbol, Tag 55.
|
|
func (m ExecutionReport) SetSymbol(v string) {
|
|
m.Set(field.NewSymbol(v))
|
|
}
|
|
|
|
// SetText sets Text, Tag 58.
|
|
func (m ExecutionReport) SetText(v string) {
|
|
m.Set(field.NewText(v))
|
|
}
|
|
|
|
// SetTimeInForce sets TimeInForce, Tag 59.
|
|
func (m ExecutionReport) SetTimeInForce(v enum.TimeInForce) {
|
|
m.Set(field.NewTimeInForce(v))
|
|
}
|
|
|
|
// SetTransactTime sets TransactTime, Tag 60.
|
|
func (m ExecutionReport) SetTransactTime(v time.Time) {
|
|
m.Set(field.NewTransactTime(v))
|
|
}
|
|
|
|
// SetSettlType sets SettlType, Tag 63.
|
|
func (m ExecutionReport) SetSettlType(v enum.SettlType) {
|
|
m.Set(field.NewSettlType(v))
|
|
}
|
|
|
|
// SetSettlDate sets SettlDate, Tag 64.
|
|
func (m ExecutionReport) SetSettlDate(v string) {
|
|
m.Set(field.NewSettlDate(v))
|
|
}
|
|
|
|
// SetSymbolSfx sets SymbolSfx, Tag 65.
|
|
func (m ExecutionReport) SetSymbolSfx(v enum.SymbolSfx) {
|
|
m.Set(field.NewSymbolSfx(v))
|
|
}
|
|
|
|
// SetListID sets ListID, Tag 66.
|
|
func (m ExecutionReport) SetListID(v string) {
|
|
m.Set(field.NewListID(v))
|
|
}
|
|
|
|
// SetTradeDate sets TradeDate, Tag 75.
|
|
func (m ExecutionReport) SetTradeDate(v string) {
|
|
m.Set(field.NewTradeDate(v))
|
|
}
|
|
|
|
// SetPositionEffect sets PositionEffect, Tag 77.
|
|
func (m ExecutionReport) SetPositionEffect(v enum.PositionEffect) {
|
|
m.Set(field.NewPositionEffect(v))
|
|
}
|
|
|
|
// SetStopPx sets StopPx, Tag 99.
|
|
func (m ExecutionReport) SetStopPx(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewStopPx(value, scale))
|
|
}
|
|
|
|
// SetOrdRejReason sets OrdRejReason, Tag 103.
|
|
func (m ExecutionReport) SetOrdRejReason(v enum.OrdRejReason) {
|
|
m.Set(field.NewOrdRejReason(v))
|
|
}
|
|
|
|
// SetIssuer sets Issuer, Tag 106.
|
|
func (m ExecutionReport) SetIssuer(v string) {
|
|
m.Set(field.NewIssuer(v))
|
|
}
|
|
|
|
// SetSecurityDesc sets SecurityDesc, Tag 107.
|
|
func (m ExecutionReport) SetSecurityDesc(v string) {
|
|
m.Set(field.NewSecurityDesc(v))
|
|
}
|
|
|
|
// SetMinQty sets MinQty, Tag 110.
|
|
func (m ExecutionReport) SetMinQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewMinQty(value, scale))
|
|
}
|
|
|
|
// SetMaxFloor sets MaxFloor, Tag 111.
|
|
func (m ExecutionReport) SetMaxFloor(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewMaxFloor(value, scale))
|
|
}
|
|
|
|
// SetReportToExch sets ReportToExch, Tag 113.
|
|
func (m ExecutionReport) SetReportToExch(v bool) {
|
|
m.Set(field.NewReportToExch(v))
|
|
}
|
|
|
|
// SetNetMoney sets NetMoney, Tag 118.
|
|
func (m ExecutionReport) SetNetMoney(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewNetMoney(value, scale))
|
|
}
|
|
|
|
// SetSettlCurrAmt sets SettlCurrAmt, Tag 119.
|
|
func (m ExecutionReport) SetSettlCurrAmt(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewSettlCurrAmt(value, scale))
|
|
}
|
|
|
|
// SetSettlCurrency sets SettlCurrency, Tag 120.
|
|
func (m ExecutionReport) SetSettlCurrency(v string) {
|
|
m.Set(field.NewSettlCurrency(v))
|
|
}
|
|
|
|
// SetExpireTime sets ExpireTime, Tag 126.
|
|
func (m ExecutionReport) SetExpireTime(v time.Time) {
|
|
m.Set(field.NewExpireTime(v))
|
|
}
|
|
|
|
// SetBidPx sets BidPx, Tag 132.
|
|
func (m ExecutionReport) SetBidPx(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewBidPx(value, scale))
|
|
}
|
|
|
|
// SetOfferPx sets OfferPx, Tag 133.
|
|
func (m ExecutionReport) SetOfferPx(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewOfferPx(value, scale))
|
|
}
|
|
|
|
// SetBidSize sets BidSize, Tag 134.
|
|
func (m ExecutionReport) SetBidSize(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewBidSize(value, scale))
|
|
}
|
|
|
|
// SetOfferSize sets OfferSize, Tag 135.
|
|
func (m ExecutionReport) SetOfferSize(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewOfferSize(value, scale))
|
|
}
|
|
|
|
// SetNoMiscFees sets NoMiscFees, Tag 136.
|
|
func (m ExecutionReport) SetNoMiscFees(f NoMiscFeesRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetExecType sets ExecType, Tag 150.
|
|
func (m ExecutionReport) SetExecType(v enum.ExecType) {
|
|
m.Set(field.NewExecType(v))
|
|
}
|
|
|
|
// SetLeavesQty sets LeavesQty, Tag 151.
|
|
func (m ExecutionReport) SetLeavesQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLeavesQty(value, scale))
|
|
}
|
|
|
|
// SetCashOrderQty sets CashOrderQty, Tag 152.
|
|
func (m ExecutionReport) SetCashOrderQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewCashOrderQty(value, scale))
|
|
}
|
|
|
|
// SetSettlCurrFxRate sets SettlCurrFxRate, Tag 155.
|
|
func (m ExecutionReport) SetSettlCurrFxRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewSettlCurrFxRate(value, scale))
|
|
}
|
|
|
|
// SetSettlCurrFxRateCalc sets SettlCurrFxRateCalc, Tag 156.
|
|
func (m ExecutionReport) SetSettlCurrFxRateCalc(v enum.SettlCurrFxRateCalc) {
|
|
m.Set(field.NewSettlCurrFxRateCalc(v))
|
|
}
|
|
|
|
// SetNumDaysInterest sets NumDaysInterest, Tag 157.
|
|
func (m ExecutionReport) SetNumDaysInterest(v int) {
|
|
m.Set(field.NewNumDaysInterest(v))
|
|
}
|
|
|
|
// SetAccruedInterestRate sets AccruedInterestRate, Tag 158.
|
|
func (m ExecutionReport) SetAccruedInterestRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewAccruedInterestRate(value, scale))
|
|
}
|
|
|
|
// SetAccruedInterestAmt sets AccruedInterestAmt, Tag 159.
|
|
func (m ExecutionReport) SetAccruedInterestAmt(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewAccruedInterestAmt(value, scale))
|
|
}
|
|
|
|
// SetSecurityType sets SecurityType, Tag 167.
|
|
func (m ExecutionReport) SetSecurityType(v enum.SecurityType) {
|
|
m.Set(field.NewSecurityType(v))
|
|
}
|
|
|
|
// SetEffectiveTime sets EffectiveTime, Tag 168.
|
|
func (m ExecutionReport) SetEffectiveTime(v time.Time) {
|
|
m.Set(field.NewEffectiveTime(v))
|
|
}
|
|
|
|
// SetOrderQty2 sets OrderQty2, Tag 192.
|
|
func (m ExecutionReport) SetOrderQty2(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewOrderQty2(value, scale))
|
|
}
|
|
|
|
// SetSettlDate2 sets SettlDate2, Tag 193.
|
|
func (m ExecutionReport) SetSettlDate2(v string) {
|
|
m.Set(field.NewSettlDate2(v))
|
|
}
|
|
|
|
// SetLastSpotRate sets LastSpotRate, Tag 194.
|
|
func (m ExecutionReport) SetLastSpotRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLastSpotRate(value, scale))
|
|
}
|
|
|
|
// SetLastForwardPoints sets LastForwardPoints, Tag 195.
|
|
func (m ExecutionReport) SetLastForwardPoints(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLastForwardPoints(value, scale))
|
|
}
|
|
|
|
// SetSecondaryOrderID sets SecondaryOrderID, Tag 198.
|
|
func (m ExecutionReport) SetSecondaryOrderID(v string) {
|
|
m.Set(field.NewSecondaryOrderID(v))
|
|
}
|
|
|
|
// SetMaturityMonthYear sets MaturityMonthYear, Tag 200.
|
|
func (m ExecutionReport) SetMaturityMonthYear(v string) {
|
|
m.Set(field.NewMaturityMonthYear(v))
|
|
}
|
|
|
|
// SetStrikePrice sets StrikePrice, Tag 202.
|
|
func (m ExecutionReport) SetStrikePrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewStrikePrice(value, scale))
|
|
}
|
|
|
|
// SetOptAttribute sets OptAttribute, Tag 206.
|
|
func (m ExecutionReport) SetOptAttribute(v string) {
|
|
m.Set(field.NewOptAttribute(v))
|
|
}
|
|
|
|
// SetSecurityExchange sets SecurityExchange, Tag 207.
|
|
func (m ExecutionReport) SetSecurityExchange(v string) {
|
|
m.Set(field.NewSecurityExchange(v))
|
|
}
|
|
|
|
// SetMaxShow sets MaxShow, Tag 210.
|
|
func (m ExecutionReport) SetMaxShow(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewMaxShow(value, scale))
|
|
}
|
|
|
|
// SetPegOffsetValue sets PegOffsetValue, Tag 211.
|
|
func (m ExecutionReport) SetPegOffsetValue(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewPegOffsetValue(value, scale))
|
|
}
|
|
|
|
// SetSpread sets Spread, Tag 218.
|
|
func (m ExecutionReport) SetSpread(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewSpread(value, scale))
|
|
}
|
|
|
|
// SetBenchmarkCurveCurrency sets BenchmarkCurveCurrency, Tag 220.
|
|
func (m ExecutionReport) SetBenchmarkCurveCurrency(v string) {
|
|
m.Set(field.NewBenchmarkCurveCurrency(v))
|
|
}
|
|
|
|
// SetBenchmarkCurveName sets BenchmarkCurveName, Tag 221.
|
|
func (m ExecutionReport) SetBenchmarkCurveName(v enum.BenchmarkCurveName) {
|
|
m.Set(field.NewBenchmarkCurveName(v))
|
|
}
|
|
|
|
// SetBenchmarkCurvePoint sets BenchmarkCurvePoint, Tag 222.
|
|
func (m ExecutionReport) SetBenchmarkCurvePoint(v string) {
|
|
m.Set(field.NewBenchmarkCurvePoint(v))
|
|
}
|
|
|
|
// SetCouponRate sets CouponRate, Tag 223.
|
|
func (m ExecutionReport) SetCouponRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewCouponRate(value, scale))
|
|
}
|
|
|
|
// SetCouponPaymentDate sets CouponPaymentDate, Tag 224.
|
|
func (m ExecutionReport) SetCouponPaymentDate(v string) {
|
|
m.Set(field.NewCouponPaymentDate(v))
|
|
}
|
|
|
|
// SetIssueDate sets IssueDate, Tag 225.
|
|
func (m ExecutionReport) SetIssueDate(v string) {
|
|
m.Set(field.NewIssueDate(v))
|
|
}
|
|
|
|
// SetRepurchaseTerm sets RepurchaseTerm, Tag 226.
|
|
func (m ExecutionReport) SetRepurchaseTerm(v int) {
|
|
m.Set(field.NewRepurchaseTerm(v))
|
|
}
|
|
|
|
// SetRepurchaseRate sets RepurchaseRate, Tag 227.
|
|
func (m ExecutionReport) SetRepurchaseRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewRepurchaseRate(value, scale))
|
|
}
|
|
|
|
// SetFactor sets Factor, Tag 228.
|
|
func (m ExecutionReport) SetFactor(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewFactor(value, scale))
|
|
}
|
|
|
|
// SetTradeOriginationDate sets TradeOriginationDate, Tag 229.
|
|
func (m ExecutionReport) SetTradeOriginationDate(v string) {
|
|
m.Set(field.NewTradeOriginationDate(v))
|
|
}
|
|
|
|
// SetExDate sets ExDate, Tag 230.
|
|
func (m ExecutionReport) SetExDate(v string) {
|
|
m.Set(field.NewExDate(v))
|
|
}
|
|
|
|
// SetContractMultiplier sets ContractMultiplier, Tag 231.
|
|
func (m ExecutionReport) SetContractMultiplier(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewContractMultiplier(value, scale))
|
|
}
|
|
|
|
// SetNoStipulations sets NoStipulations, Tag 232.
|
|
func (m ExecutionReport) SetNoStipulations(f NoStipulationsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetYieldType sets YieldType, Tag 235.
|
|
func (m ExecutionReport) SetYieldType(v enum.YieldType) {
|
|
m.Set(field.NewYieldType(v))
|
|
}
|
|
|
|
// SetYield sets Yield, Tag 236.
|
|
func (m ExecutionReport) SetYield(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewYield(value, scale))
|
|
}
|
|
|
|
// SetTotalTakedown sets TotalTakedown, Tag 237.
|
|
func (m ExecutionReport) SetTotalTakedown(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewTotalTakedown(value, scale))
|
|
}
|
|
|
|
// SetConcession sets Concession, Tag 238.
|
|
func (m ExecutionReport) SetConcession(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewConcession(value, scale))
|
|
}
|
|
|
|
// SetRepoCollateralSecurityType sets RepoCollateralSecurityType, Tag 239.
|
|
func (m ExecutionReport) SetRepoCollateralSecurityType(v int) {
|
|
m.Set(field.NewRepoCollateralSecurityType(v))
|
|
}
|
|
|
|
// SetRedemptionDate sets RedemptionDate, Tag 240.
|
|
func (m ExecutionReport) SetRedemptionDate(v string) {
|
|
m.Set(field.NewRedemptionDate(v))
|
|
}
|
|
|
|
// SetCreditRating sets CreditRating, Tag 255.
|
|
func (m ExecutionReport) SetCreditRating(v string) {
|
|
m.Set(field.NewCreditRating(v))
|
|
}
|
|
|
|
// SetTradedFlatSwitch sets TradedFlatSwitch, Tag 258.
|
|
func (m ExecutionReport) SetTradedFlatSwitch(v bool) {
|
|
m.Set(field.NewTradedFlatSwitch(v))
|
|
}
|
|
|
|
// SetBasisFeatureDate sets BasisFeatureDate, Tag 259.
|
|
func (m ExecutionReport) SetBasisFeatureDate(v string) {
|
|
m.Set(field.NewBasisFeatureDate(v))
|
|
}
|
|
|
|
// SetBasisFeaturePrice sets BasisFeaturePrice, Tag 260.
|
|
func (m ExecutionReport) SetBasisFeaturePrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewBasisFeaturePrice(value, scale))
|
|
}
|
|
|
|
// SetTradingSessionID sets TradingSessionID, Tag 336.
|
|
func (m ExecutionReport) SetTradingSessionID(v enum.TradingSessionID) {
|
|
m.Set(field.NewTradingSessionID(v))
|
|
}
|
|
|
|
// SetEncodedIssuerLen sets EncodedIssuerLen, Tag 348.
|
|
func (m ExecutionReport) SetEncodedIssuerLen(v int) {
|
|
m.Set(field.NewEncodedIssuerLen(v))
|
|
}
|
|
|
|
// SetEncodedIssuer sets EncodedIssuer, Tag 349.
|
|
func (m ExecutionReport) SetEncodedIssuer(v string) {
|
|
m.Set(field.NewEncodedIssuer(v))
|
|
}
|
|
|
|
// SetEncodedSecurityDescLen sets EncodedSecurityDescLen, Tag 350.
|
|
func (m ExecutionReport) SetEncodedSecurityDescLen(v int) {
|
|
m.Set(field.NewEncodedSecurityDescLen(v))
|
|
}
|
|
|
|
// SetEncodedSecurityDesc sets EncodedSecurityDesc, Tag 351.
|
|
func (m ExecutionReport) SetEncodedSecurityDesc(v string) {
|
|
m.Set(field.NewEncodedSecurityDesc(v))
|
|
}
|
|
|
|
// SetEncodedTextLen sets EncodedTextLen, Tag 354.
|
|
func (m ExecutionReport) SetEncodedTextLen(v int) {
|
|
m.Set(field.NewEncodedTextLen(v))
|
|
}
|
|
|
|
// SetEncodedText sets EncodedText, Tag 355.
|
|
func (m ExecutionReport) SetEncodedText(v string) {
|
|
m.Set(field.NewEncodedText(v))
|
|
}
|
|
|
|
// SetComplianceID sets ComplianceID, Tag 376.
|
|
func (m ExecutionReport) SetComplianceID(v string) {
|
|
m.Set(field.NewComplianceID(v))
|
|
}
|
|
|
|
// SetSolicitedFlag sets SolicitedFlag, Tag 377.
|
|
func (m ExecutionReport) SetSolicitedFlag(v bool) {
|
|
m.Set(field.NewSolicitedFlag(v))
|
|
}
|
|
|
|
// SetExecRestatementReason sets ExecRestatementReason, Tag 378.
|
|
func (m ExecutionReport) SetExecRestatementReason(v enum.ExecRestatementReason) {
|
|
m.Set(field.NewExecRestatementReason(v))
|
|
}
|
|
|
|
// SetGrossTradeAmt sets GrossTradeAmt, Tag 381.
|
|
func (m ExecutionReport) SetGrossTradeAmt(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewGrossTradeAmt(value, scale))
|
|
}
|
|
|
|
// SetNoContraBrokers sets NoContraBrokers, Tag 382.
|
|
func (m ExecutionReport) SetNoContraBrokers(f NoContraBrokersRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetDiscretionInst sets DiscretionInst, Tag 388.
|
|
func (m ExecutionReport) SetDiscretionInst(v enum.DiscretionInst) {
|
|
m.Set(field.NewDiscretionInst(v))
|
|
}
|
|
|
|
// SetDiscretionOffsetValue sets DiscretionOffsetValue, Tag 389.
|
|
func (m ExecutionReport) SetDiscretionOffsetValue(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewDiscretionOffsetValue(value, scale))
|
|
}
|
|
|
|
// SetPriceType sets PriceType, Tag 423.
|
|
func (m ExecutionReport) SetPriceType(v enum.PriceType) {
|
|
m.Set(field.NewPriceType(v))
|
|
}
|
|
|
|
// SetDayOrderQty sets DayOrderQty, Tag 424.
|
|
func (m ExecutionReport) SetDayOrderQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewDayOrderQty(value, scale))
|
|
}
|
|
|
|
// SetDayCumQty sets DayCumQty, Tag 425.
|
|
func (m ExecutionReport) SetDayCumQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewDayCumQty(value, scale))
|
|
}
|
|
|
|
// SetDayAvgPx sets DayAvgPx, Tag 426.
|
|
func (m ExecutionReport) SetDayAvgPx(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewDayAvgPx(value, scale))
|
|
}
|
|
|
|
// SetGTBookingInst sets GTBookingInst, Tag 427.
|
|
func (m ExecutionReport) SetGTBookingInst(v enum.GTBookingInst) {
|
|
m.Set(field.NewGTBookingInst(v))
|
|
}
|
|
|
|
// SetExpireDate sets ExpireDate, Tag 432.
|
|
func (m ExecutionReport) SetExpireDate(v string) {
|
|
m.Set(field.NewExpireDate(v))
|
|
}
|
|
|
|
// SetMultiLegReportingType sets MultiLegReportingType, Tag 442.
|
|
func (m ExecutionReport) SetMultiLegReportingType(v enum.MultiLegReportingType) {
|
|
m.Set(field.NewMultiLegReportingType(v))
|
|
}
|
|
|
|
// SetNoPartyIDs sets NoPartyIDs, Tag 453.
|
|
func (m ExecutionReport) SetNoPartyIDs(f NoPartyIDsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetNoSecurityAltID sets NoSecurityAltID, Tag 454.
|
|
func (m ExecutionReport) SetNoSecurityAltID(f NoSecurityAltIDRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetProduct sets Product, Tag 460.
|
|
func (m ExecutionReport) SetProduct(v enum.Product) {
|
|
m.Set(field.NewProduct(v))
|
|
}
|
|
|
|
// SetCFICode sets CFICode, Tag 461.
|
|
func (m ExecutionReport) SetCFICode(v string) {
|
|
m.Set(field.NewCFICode(v))
|
|
}
|
|
|
|
// SetTestMessageIndicator sets TestMessageIndicator, Tag 464.
|
|
func (m ExecutionReport) SetTestMessageIndicator(v bool) {
|
|
m.Set(field.NewTestMessageIndicator(v))
|
|
}
|
|
|
|
// SetRoundingDirection sets RoundingDirection, Tag 468.
|
|
func (m ExecutionReport) SetRoundingDirection(v enum.RoundingDirection) {
|
|
m.Set(field.NewRoundingDirection(v))
|
|
}
|
|
|
|
// SetRoundingModulus sets RoundingModulus, Tag 469.
|
|
func (m ExecutionReport) SetRoundingModulus(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewRoundingModulus(value, scale))
|
|
}
|
|
|
|
// SetCountryOfIssue sets CountryOfIssue, Tag 470.
|
|
func (m ExecutionReport) SetCountryOfIssue(v string) {
|
|
m.Set(field.NewCountryOfIssue(v))
|
|
}
|
|
|
|
// SetStateOrProvinceOfIssue sets StateOrProvinceOfIssue, Tag 471.
|
|
func (m ExecutionReport) SetStateOrProvinceOfIssue(v string) {
|
|
m.Set(field.NewStateOrProvinceOfIssue(v))
|
|
}
|
|
|
|
// SetLocaleOfIssue sets LocaleOfIssue, Tag 472.
|
|
func (m ExecutionReport) SetLocaleOfIssue(v string) {
|
|
m.Set(field.NewLocaleOfIssue(v))
|
|
}
|
|
|
|
// SetCommCurrency sets CommCurrency, Tag 479.
|
|
func (m ExecutionReport) SetCommCurrency(v string) {
|
|
m.Set(field.NewCommCurrency(v))
|
|
}
|
|
|
|
// SetCancellationRights sets CancellationRights, Tag 480.
|
|
func (m ExecutionReport) SetCancellationRights(v enum.CancellationRights) {
|
|
m.Set(field.NewCancellationRights(v))
|
|
}
|
|
|
|
// SetMoneyLaunderingStatus sets MoneyLaunderingStatus, Tag 481.
|
|
func (m ExecutionReport) SetMoneyLaunderingStatus(v enum.MoneyLaunderingStatus) {
|
|
m.Set(field.NewMoneyLaunderingStatus(v))
|
|
}
|
|
|
|
// SetTransBkdTime sets TransBkdTime, Tag 483.
|
|
func (m ExecutionReport) SetTransBkdTime(v time.Time) {
|
|
m.Set(field.NewTransBkdTime(v))
|
|
}
|
|
|
|
// SetExecPriceType sets ExecPriceType, Tag 484.
|
|
func (m ExecutionReport) SetExecPriceType(v enum.ExecPriceType) {
|
|
m.Set(field.NewExecPriceType(v))
|
|
}
|
|
|
|
// SetExecPriceAdjustment sets ExecPriceAdjustment, Tag 485.
|
|
func (m ExecutionReport) SetExecPriceAdjustment(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewExecPriceAdjustment(value, scale))
|
|
}
|
|
|
|
// SetDesignation sets Designation, Tag 494.
|
|
func (m ExecutionReport) SetDesignation(v string) {
|
|
m.Set(field.NewDesignation(v))
|
|
}
|
|
|
|
// SetFundRenewWaiv sets FundRenewWaiv, Tag 497.
|
|
func (m ExecutionReport) SetFundRenewWaiv(v enum.FundRenewWaiv) {
|
|
m.Set(field.NewFundRenewWaiv(v))
|
|
}
|
|
|
|
// SetRegistID sets RegistID, Tag 513.
|
|
func (m ExecutionReport) SetRegistID(v string) {
|
|
m.Set(field.NewRegistID(v))
|
|
}
|
|
|
|
// SetExecValuationPoint sets ExecValuationPoint, Tag 515.
|
|
func (m ExecutionReport) SetExecValuationPoint(v time.Time) {
|
|
m.Set(field.NewExecValuationPoint(v))
|
|
}
|
|
|
|
// SetOrderPercent sets OrderPercent, Tag 516.
|
|
func (m ExecutionReport) SetOrderPercent(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewOrderPercent(value, scale))
|
|
}
|
|
|
|
// SetNoContAmts sets NoContAmts, Tag 518.
|
|
func (m ExecutionReport) SetNoContAmts(f NoContAmtsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetSecondaryClOrdID sets SecondaryClOrdID, Tag 526.
|
|
func (m ExecutionReport) SetSecondaryClOrdID(v string) {
|
|
m.Set(field.NewSecondaryClOrdID(v))
|
|
}
|
|
|
|
// SetSecondaryExecID sets SecondaryExecID, Tag 527.
|
|
func (m ExecutionReport) SetSecondaryExecID(v string) {
|
|
m.Set(field.NewSecondaryExecID(v))
|
|
}
|
|
|
|
// SetOrderCapacity sets OrderCapacity, Tag 528.
|
|
func (m ExecutionReport) SetOrderCapacity(v enum.OrderCapacity) {
|
|
m.Set(field.NewOrderCapacity(v))
|
|
}
|
|
|
|
// SetOrderRestrictions sets OrderRestrictions, Tag 529.
|
|
func (m ExecutionReport) SetOrderRestrictions(v enum.OrderRestrictions) {
|
|
m.Set(field.NewOrderRestrictions(v))
|
|
}
|
|
|
|
// SetMaturityDate sets MaturityDate, Tag 541.
|
|
func (m ExecutionReport) SetMaturityDate(v string) {
|
|
m.Set(field.NewMaturityDate(v))
|
|
}
|
|
|
|
// SetInstrRegistry sets InstrRegistry, Tag 543.
|
|
func (m ExecutionReport) SetInstrRegistry(v enum.InstrRegistry) {
|
|
m.Set(field.NewInstrRegistry(v))
|
|
}
|
|
|
|
// SetCashMargin sets CashMargin, Tag 544.
|
|
func (m ExecutionReport) SetCashMargin(v enum.CashMargin) {
|
|
m.Set(field.NewCashMargin(v))
|
|
}
|
|
|
|
// SetCrossID sets CrossID, Tag 548.
|
|
func (m ExecutionReport) SetCrossID(v string) {
|
|
m.Set(field.NewCrossID(v))
|
|
}
|
|
|
|
// SetCrossType sets CrossType, Tag 549.
|
|
func (m ExecutionReport) SetCrossType(v enum.CrossType) {
|
|
m.Set(field.NewCrossType(v))
|
|
}
|
|
|
|
// SetOrigCrossID sets OrigCrossID, Tag 551.
|
|
func (m ExecutionReport) SetOrigCrossID(v string) {
|
|
m.Set(field.NewOrigCrossID(v))
|
|
}
|
|
|
|
// SetNoLegs sets NoLegs, Tag 555.
|
|
func (m ExecutionReport) SetNoLegs(f NoLegsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetAccountType sets AccountType, Tag 581.
|
|
func (m ExecutionReport) SetAccountType(v enum.AccountType) {
|
|
m.Set(field.NewAccountType(v))
|
|
}
|
|
|
|
// SetCustOrderCapacity sets CustOrderCapacity, Tag 582.
|
|
func (m ExecutionReport) SetCustOrderCapacity(v enum.CustOrderCapacity) {
|
|
m.Set(field.NewCustOrderCapacity(v))
|
|
}
|
|
|
|
// SetClOrdLinkID sets ClOrdLinkID, Tag 583.
|
|
func (m ExecutionReport) SetClOrdLinkID(v string) {
|
|
m.Set(field.NewClOrdLinkID(v))
|
|
}
|
|
|
|
// SetMassStatusReqID sets MassStatusReqID, Tag 584.
|
|
func (m ExecutionReport) SetMassStatusReqID(v string) {
|
|
m.Set(field.NewMassStatusReqID(v))
|
|
}
|
|
|
|
// SetDayBookingInst sets DayBookingInst, Tag 589.
|
|
func (m ExecutionReport) SetDayBookingInst(v enum.DayBookingInst) {
|
|
m.Set(field.NewDayBookingInst(v))
|
|
}
|
|
|
|
// SetBookingUnit sets BookingUnit, Tag 590.
|
|
func (m ExecutionReport) SetBookingUnit(v enum.BookingUnit) {
|
|
m.Set(field.NewBookingUnit(v))
|
|
}
|
|
|
|
// SetPreallocMethod sets PreallocMethod, Tag 591.
|
|
func (m ExecutionReport) SetPreallocMethod(v enum.PreallocMethod) {
|
|
m.Set(field.NewPreallocMethod(v))
|
|
}
|
|
|
|
// SetTradingSessionSubID sets TradingSessionSubID, Tag 625.
|
|
func (m ExecutionReport) SetTradingSessionSubID(v enum.TradingSessionSubID) {
|
|
m.Set(field.NewTradingSessionSubID(v))
|
|
}
|
|
|
|
// SetClearingFeeIndicator sets ClearingFeeIndicator, Tag 635.
|
|
func (m ExecutionReport) SetClearingFeeIndicator(v enum.ClearingFeeIndicator) {
|
|
m.Set(field.NewClearingFeeIndicator(v))
|
|
}
|
|
|
|
// SetWorkingIndicator sets WorkingIndicator, Tag 636.
|
|
func (m ExecutionReport) SetWorkingIndicator(v bool) {
|
|
m.Set(field.NewWorkingIndicator(v))
|
|
}
|
|
|
|
// SetPriorityIndicator sets PriorityIndicator, Tag 638.
|
|
func (m ExecutionReport) SetPriorityIndicator(v enum.PriorityIndicator) {
|
|
m.Set(field.NewPriorityIndicator(v))
|
|
}
|
|
|
|
// SetPriceImprovement sets PriceImprovement, Tag 639.
|
|
func (m ExecutionReport) SetPriceImprovement(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewPriceImprovement(value, scale))
|
|
}
|
|
|
|
// SetLastForwardPoints2 sets LastForwardPoints2, Tag 641.
|
|
func (m ExecutionReport) SetLastForwardPoints2(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLastForwardPoints2(value, scale))
|
|
}
|
|
|
|
// SetUnderlyingLastPx sets UnderlyingLastPx, Tag 651.
|
|
func (m ExecutionReport) SetUnderlyingLastPx(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewUnderlyingLastPx(value, scale))
|
|
}
|
|
|
|
// SetUnderlyingLastQty sets UnderlyingLastQty, Tag 652.
|
|
func (m ExecutionReport) SetUnderlyingLastQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewUnderlyingLastQty(value, scale))
|
|
}
|
|
|
|
// SetAcctIDSource sets AcctIDSource, Tag 660.
|
|
func (m ExecutionReport) SetAcctIDSource(v enum.AcctIDSource) {
|
|
m.Set(field.NewAcctIDSource(v))
|
|
}
|
|
|
|
// SetBenchmarkPrice sets BenchmarkPrice, Tag 662.
|
|
func (m ExecutionReport) SetBenchmarkPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewBenchmarkPrice(value, scale))
|
|
}
|
|
|
|
// SetBenchmarkPriceType sets BenchmarkPriceType, Tag 663.
|
|
func (m ExecutionReport) SetBenchmarkPriceType(v int) {
|
|
m.Set(field.NewBenchmarkPriceType(v))
|
|
}
|
|
|
|
// SetContractSettlMonth sets ContractSettlMonth, Tag 667.
|
|
func (m ExecutionReport) SetContractSettlMonth(v string) {
|
|
m.Set(field.NewContractSettlMonth(v))
|
|
}
|
|
|
|
// SetLastParPx sets LastParPx, Tag 669.
|
|
func (m ExecutionReport) SetLastParPx(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLastParPx(value, scale))
|
|
}
|
|
|
|
// SetPool sets Pool, Tag 691.
|
|
func (m ExecutionReport) SetPool(v string) {
|
|
m.Set(field.NewPool(v))
|
|
}
|
|
|
|
// SetQuoteRespID sets QuoteRespID, Tag 693.
|
|
func (m ExecutionReport) SetQuoteRespID(v string) {
|
|
m.Set(field.NewQuoteRespID(v))
|
|
}
|
|
|
|
// SetYieldRedemptionDate sets YieldRedemptionDate, Tag 696.
|
|
func (m ExecutionReport) SetYieldRedemptionDate(v string) {
|
|
m.Set(field.NewYieldRedemptionDate(v))
|
|
}
|
|
|
|
// SetYieldRedemptionPrice sets YieldRedemptionPrice, Tag 697.
|
|
func (m ExecutionReport) SetYieldRedemptionPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewYieldRedemptionPrice(value, scale))
|
|
}
|
|
|
|
// SetYieldRedemptionPriceType sets YieldRedemptionPriceType, Tag 698.
|
|
func (m ExecutionReport) SetYieldRedemptionPriceType(v int) {
|
|
m.Set(field.NewYieldRedemptionPriceType(v))
|
|
}
|
|
|
|
// SetBenchmarkSecurityID sets BenchmarkSecurityID, Tag 699.
|
|
func (m ExecutionReport) SetBenchmarkSecurityID(v string) {
|
|
m.Set(field.NewBenchmarkSecurityID(v))
|
|
}
|
|
|
|
// SetYieldCalcDate sets YieldCalcDate, Tag 701.
|
|
func (m ExecutionReport) SetYieldCalcDate(v string) {
|
|
m.Set(field.NewYieldCalcDate(v))
|
|
}
|
|
|
|
// SetNoUnderlyings sets NoUnderlyings, Tag 711.
|
|
func (m ExecutionReport) SetNoUnderlyings(f NoUnderlyingsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetInterestAtMaturity sets InterestAtMaturity, Tag 738.
|
|
func (m ExecutionReport) SetInterestAtMaturity(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewInterestAtMaturity(value, scale))
|
|
}
|
|
|
|
// SetBenchmarkSecurityIDSource sets BenchmarkSecurityIDSource, Tag 761.
|
|
func (m ExecutionReport) SetBenchmarkSecurityIDSource(v string) {
|
|
m.Set(field.NewBenchmarkSecurityIDSource(v))
|
|
}
|
|
|
|
// SetSecuritySubType sets SecuritySubType, Tag 762.
|
|
func (m ExecutionReport) SetSecuritySubType(v string) {
|
|
m.Set(field.NewSecuritySubType(v))
|
|
}
|
|
|
|
// SetBookingType sets BookingType, Tag 775.
|
|
func (m ExecutionReport) SetBookingType(v enum.BookingType) {
|
|
m.Set(field.NewBookingType(v))
|
|
}
|
|
|
|
// SetTerminationType sets TerminationType, Tag 788.
|
|
func (m ExecutionReport) SetTerminationType(v enum.TerminationType) {
|
|
m.Set(field.NewTerminationType(v))
|
|
}
|
|
|
|
// SetOrdStatusReqID sets OrdStatusReqID, Tag 790.
|
|
func (m ExecutionReport) SetOrdStatusReqID(v string) {
|
|
m.Set(field.NewOrdStatusReqID(v))
|
|
}
|
|
|
|
// SetCopyMsgIndicator sets CopyMsgIndicator, Tag 797.
|
|
func (m ExecutionReport) SetCopyMsgIndicator(v bool) {
|
|
m.Set(field.NewCopyMsgIndicator(v))
|
|
}
|
|
|
|
// SetPegMoveType sets PegMoveType, Tag 835.
|
|
func (m ExecutionReport) SetPegMoveType(v enum.PegMoveType) {
|
|
m.Set(field.NewPegMoveType(v))
|
|
}
|
|
|
|
// SetPegOffsetType sets PegOffsetType, Tag 836.
|
|
func (m ExecutionReport) SetPegOffsetType(v enum.PegOffsetType) {
|
|
m.Set(field.NewPegOffsetType(v))
|
|
}
|
|
|
|
// SetPegLimitType sets PegLimitType, Tag 837.
|
|
func (m ExecutionReport) SetPegLimitType(v enum.PegLimitType) {
|
|
m.Set(field.NewPegLimitType(v))
|
|
}
|
|
|
|
// SetPegRoundDirection sets PegRoundDirection, Tag 838.
|
|
func (m ExecutionReport) SetPegRoundDirection(v enum.PegRoundDirection) {
|
|
m.Set(field.NewPegRoundDirection(v))
|
|
}
|
|
|
|
// SetPeggedPrice sets PeggedPrice, Tag 839.
|
|
func (m ExecutionReport) SetPeggedPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewPeggedPrice(value, scale))
|
|
}
|
|
|
|
// SetPegScope sets PegScope, Tag 840.
|
|
func (m ExecutionReport) SetPegScope(v enum.PegScope) {
|
|
m.Set(field.NewPegScope(v))
|
|
}
|
|
|
|
// SetDiscretionMoveType sets DiscretionMoveType, Tag 841.
|
|
func (m ExecutionReport) SetDiscretionMoveType(v enum.DiscretionMoveType) {
|
|
m.Set(field.NewDiscretionMoveType(v))
|
|
}
|
|
|
|
// SetDiscretionOffsetType sets DiscretionOffsetType, Tag 842.
|
|
func (m ExecutionReport) SetDiscretionOffsetType(v enum.DiscretionOffsetType) {
|
|
m.Set(field.NewDiscretionOffsetType(v))
|
|
}
|
|
|
|
// SetDiscretionLimitType sets DiscretionLimitType, Tag 843.
|
|
func (m ExecutionReport) SetDiscretionLimitType(v enum.DiscretionLimitType) {
|
|
m.Set(field.NewDiscretionLimitType(v))
|
|
}
|
|
|
|
// SetDiscretionRoundDirection sets DiscretionRoundDirection, Tag 844.
|
|
func (m ExecutionReport) SetDiscretionRoundDirection(v enum.DiscretionRoundDirection) {
|
|
m.Set(field.NewDiscretionRoundDirection(v))
|
|
}
|
|
|
|
// SetDiscretionPrice sets DiscretionPrice, Tag 845.
|
|
func (m ExecutionReport) SetDiscretionPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewDiscretionPrice(value, scale))
|
|
}
|
|
|
|
// SetDiscretionScope sets DiscretionScope, Tag 846.
|
|
func (m ExecutionReport) SetDiscretionScope(v enum.DiscretionScope) {
|
|
m.Set(field.NewDiscretionScope(v))
|
|
}
|
|
|
|
// SetTargetStrategy sets TargetStrategy, Tag 847.
|
|
func (m ExecutionReport) SetTargetStrategy(v enum.TargetStrategy) {
|
|
m.Set(field.NewTargetStrategy(v))
|
|
}
|
|
|
|
// SetTargetStrategyParameters sets TargetStrategyParameters, Tag 848.
|
|
func (m ExecutionReport) SetTargetStrategyParameters(v string) {
|
|
m.Set(field.NewTargetStrategyParameters(v))
|
|
}
|
|
|
|
// SetParticipationRate sets ParticipationRate, Tag 849.
|
|
func (m ExecutionReport) SetParticipationRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewParticipationRate(value, scale))
|
|
}
|
|
|
|
// SetTargetStrategyPerformance sets TargetStrategyPerformance, Tag 850.
|
|
func (m ExecutionReport) SetTargetStrategyPerformance(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewTargetStrategyPerformance(value, scale))
|
|
}
|
|
|
|
// SetLastLiquidityInd sets LastLiquidityInd, Tag 851.
|
|
func (m ExecutionReport) SetLastLiquidityInd(v enum.LastLiquidityInd) {
|
|
m.Set(field.NewLastLiquidityInd(v))
|
|
}
|
|
|
|
// SetQtyType sets QtyType, Tag 854.
|
|
func (m ExecutionReport) SetQtyType(v enum.QtyType) {
|
|
m.Set(field.NewQtyType(v))
|
|
}
|
|
|
|
// SetNoEvents sets NoEvents, Tag 864.
|
|
func (m ExecutionReport) SetNoEvents(f NoEventsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetDatedDate sets DatedDate, Tag 873.
|
|
func (m ExecutionReport) SetDatedDate(v string) {
|
|
m.Set(field.NewDatedDate(v))
|
|
}
|
|
|
|
// SetInterestAccrualDate sets InterestAccrualDate, Tag 874.
|
|
func (m ExecutionReport) SetInterestAccrualDate(v string) {
|
|
m.Set(field.NewInterestAccrualDate(v))
|
|
}
|
|
|
|
// SetCPProgram sets CPProgram, Tag 875.
|
|
func (m ExecutionReport) SetCPProgram(v enum.CPProgram) {
|
|
m.Set(field.NewCPProgram(v))
|
|
}
|
|
|
|
// SetCPRegType sets CPRegType, Tag 876.
|
|
func (m ExecutionReport) SetCPRegType(v string) {
|
|
m.Set(field.NewCPRegType(v))
|
|
}
|
|
|
|
// SetLastFragment sets LastFragment, Tag 893.
|
|
func (m ExecutionReport) SetLastFragment(v bool) {
|
|
m.Set(field.NewLastFragment(v))
|
|
}
|
|
|
|
// SetMarginRatio sets MarginRatio, Tag 898.
|
|
func (m ExecutionReport) SetMarginRatio(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewMarginRatio(value, scale))
|
|
}
|
|
|
|
// SetTotNumReports sets TotNumReports, Tag 911.
|
|
func (m ExecutionReport) SetTotNumReports(v int) {
|
|
m.Set(field.NewTotNumReports(v))
|
|
}
|
|
|
|
// SetLastRptRequested sets LastRptRequested, Tag 912.
|
|
func (m ExecutionReport) SetLastRptRequested(v bool) {
|
|
m.Set(field.NewLastRptRequested(v))
|
|
}
|
|
|
|
// SetAgreementDesc sets AgreementDesc, Tag 913.
|
|
func (m ExecutionReport) SetAgreementDesc(v string) {
|
|
m.Set(field.NewAgreementDesc(v))
|
|
}
|
|
|
|
// SetAgreementID sets AgreementID, Tag 914.
|
|
func (m ExecutionReport) SetAgreementID(v string) {
|
|
m.Set(field.NewAgreementID(v))
|
|
}
|
|
|
|
// SetAgreementDate sets AgreementDate, Tag 915.
|
|
func (m ExecutionReport) SetAgreementDate(v string) {
|
|
m.Set(field.NewAgreementDate(v))
|
|
}
|
|
|
|
// SetStartDate sets StartDate, Tag 916.
|
|
func (m ExecutionReport) SetStartDate(v string) {
|
|
m.Set(field.NewStartDate(v))
|
|
}
|
|
|
|
// SetEndDate sets EndDate, Tag 917.
|
|
func (m ExecutionReport) SetEndDate(v string) {
|
|
m.Set(field.NewEndDate(v))
|
|
}
|
|
|
|
// SetAgreementCurrency sets AgreementCurrency, Tag 918.
|
|
func (m ExecutionReport) SetAgreementCurrency(v string) {
|
|
m.Set(field.NewAgreementCurrency(v))
|
|
}
|
|
|
|
// SetDeliveryType sets DeliveryType, Tag 919.
|
|
func (m ExecutionReport) SetDeliveryType(v enum.DeliveryType) {
|
|
m.Set(field.NewDeliveryType(v))
|
|
}
|
|
|
|
// SetEndAccruedInterestAmt sets EndAccruedInterestAmt, Tag 920.
|
|
func (m ExecutionReport) SetEndAccruedInterestAmt(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewEndAccruedInterestAmt(value, scale))
|
|
}
|
|
|
|
// SetStartCash sets StartCash, Tag 921.
|
|
func (m ExecutionReport) SetStartCash(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewStartCash(value, scale))
|
|
}
|
|
|
|
// SetEndCash sets EndCash, Tag 922.
|
|
func (m ExecutionReport) SetEndCash(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewEndCash(value, scale))
|
|
}
|
|
|
|
// SetTimeBracket sets TimeBracket, Tag 943.
|
|
func (m ExecutionReport) SetTimeBracket(v string) {
|
|
m.Set(field.NewTimeBracket(v))
|
|
}
|
|
|
|
// SetStrikeCurrency sets StrikeCurrency, Tag 947.
|
|
func (m ExecutionReport) SetStrikeCurrency(v string) {
|
|
m.Set(field.NewStrikeCurrency(v))
|
|
}
|
|
|
|
// SetTradeID sets TradeID, Tag 1003.
|
|
func (m ExecutionReport) SetTradeID(v string) {
|
|
m.Set(field.NewTradeID(v))
|
|
}
|
|
|
|
// SetNoRootPartyIDs sets NoRootPartyIDs, Tag 1116.
|
|
func (m ExecutionReport) SetNoRootPartyIDs(f NoRootPartyIDsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetSecurityXMLLen sets SecurityXMLLen, Tag 1184.
|
|
func (m ExecutionReport) SetSecurityXMLLen(v int) {
|
|
m.Set(field.NewSecurityXMLLen(v))
|
|
}
|
|
|
|
// SetSecurityXML sets SecurityXML, Tag 1185.
|
|
func (m ExecutionReport) SetSecurityXML(v string) {
|
|
m.Set(field.NewSecurityXML(v))
|
|
}
|
|
|
|
// SetSecurityXMLSchema sets SecurityXMLSchema, Tag 1186.
|
|
func (m ExecutionReport) SetSecurityXMLSchema(v string) {
|
|
m.Set(field.NewSecurityXMLSchema(v))
|
|
}
|
|
|
|
// SetNegotiationMethod sets NegotiationMethod, Tag 2115.
|
|
func (m ExecutionReport) SetNegotiationMethod(v int) {
|
|
m.Set(field.NewNegotiationMethod(v))
|
|
}
|
|
|
|
// SetNoTrdRegPublications sets NoTrdRegPublications, Tag 2668.
|
|
func (m ExecutionReport) SetNoTrdRegPublications(f NoTrdRegPublicationsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetNoCreditRating sets NoCreditRating, Tag 5114.
|
|
func (m ExecutionReport) SetNoCreditRating(f NoCreditRatingRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetMultipleTickets sets MultipleTickets, Tag 5745.
|
|
func (m ExecutionReport) SetMultipleTickets(v int) {
|
|
m.Set(field.NewMultipleTickets(v))
|
|
}
|
|
|
|
// SetReferencePrice sets ReferencePrice, Tag 6087.
|
|
func (m ExecutionReport) SetReferencePrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewReferencePrice(value, scale))
|
|
}
|
|
|
|
// SetIndustryCode sets IndustryCode, Tag 6110.
|
|
func (m ExecutionReport) SetIndustryCode(v string) {
|
|
m.Set(field.NewIndustryCode(v))
|
|
}
|
|
|
|
// SetOwnerTraderID sets OwnerTraderID, Tag 6153.
|
|
func (m ExecutionReport) SetOwnerTraderID(v string) {
|
|
m.Set(field.NewOwnerTraderID(v))
|
|
}
|
|
|
|
// SetBenchmarkSymbolSfx sets BenchmarkSymbolSfx, Tag 6633.
|
|
func (m ExecutionReport) SetBenchmarkSymbolSfx(v string) {
|
|
m.Set(field.NewBenchmarkSymbolSfx(v))
|
|
}
|
|
|
|
// SetMultilegRefID sets MultilegRefID, Tag 6735.
|
|
func (m ExecutionReport) SetMultilegRefID(v string) {
|
|
m.Set(field.NewMultilegRefID(v))
|
|
}
|
|
|
|
// SetNetPresentValue sets NetPresentValue, Tag 7088.
|
|
func (m ExecutionReport) SetNetPresentValue(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewNetPresentValue(value, scale))
|
|
}
|
|
|
|
// SetDelta sets Delta, Tag 7538.
|
|
func (m ExecutionReport) SetDelta(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewDelta(value, scale))
|
|
}
|
|
|
|
// SetDeltaTransfer sets DeltaTransfer, Tag 7769.
|
|
func (m ExecutionReport) SetDeltaTransfer(v int) {
|
|
m.Set(field.NewDeltaTransfer(v))
|
|
}
|
|
|
|
// SetEndDateBusDayAdj sets EndDateBusDayAdj, Tag 20038.
|
|
func (m ExecutionReport) SetEndDateBusDayAdj(v string) {
|
|
m.Set(field.NewEndDateBusDayAdj(v))
|
|
}
|
|
|
|
// SetOnTheRunValue sets OnTheRunValue, Tag 20052.
|
|
func (m ExecutionReport) SetOnTheRunValue(v int) {
|
|
m.Set(field.NewOnTheRunValue(v))
|
|
}
|
|
|
|
// SetReopeningValue sets ReopeningValue, Tag 20054.
|
|
func (m ExecutionReport) SetReopeningValue(v int) {
|
|
m.Set(field.NewReopeningValue(v))
|
|
}
|
|
|
|
// SetExecutionFeeSchedule sets ExecutionFeeSchedule, Tag 20056.
|
|
func (m ExecutionReport) SetExecutionFeeSchedule(v string) {
|
|
m.Set(field.NewExecutionFeeSchedule(v))
|
|
}
|
|
|
|
// SetExecutionFeeType sets ExecutionFeeType, Tag 20058.
|
|
func (m ExecutionReport) SetExecutionFeeType(v int) {
|
|
m.Set(field.NewExecutionFeeType(v))
|
|
}
|
|
|
|
// SetExecutionFeeMarkup sets ExecutionFeeMarkup, Tag 20060.
|
|
func (m ExecutionReport) SetExecutionFeeMarkup(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewExecutionFeeMarkup(value, scale))
|
|
}
|
|
|
|
// SetExecutionFeeAmount sets ExecutionFeeAmount, Tag 20062.
|
|
func (m ExecutionReport) SetExecutionFeeAmount(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewExecutionFeeAmount(value, scale))
|
|
}
|
|
|
|
// SetWinningPrice sets WinningPrice, Tag 20070.
|
|
func (m ExecutionReport) SetWinningPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewWinningPrice(value, scale))
|
|
}
|
|
|
|
// SetNegotiationType sets NegotiationType, Tag 20073.
|
|
func (m ExecutionReport) SetNegotiationType(v string) {
|
|
m.Set(field.NewNegotiationType(v))
|
|
}
|
|
|
|
// SetTimeoutPeriod sets TimeoutPeriod, Tag 20079.
|
|
func (m ExecutionReport) SetTimeoutPeriod(v int) {
|
|
m.Set(field.NewTimeoutPeriod(v))
|
|
}
|
|
|
|
// SetNoOfDealers sets NoOfDealers, Tag 20086.
|
|
func (m ExecutionReport) SetNoOfDealers(v int) {
|
|
m.Set(field.NewNoOfDealers(v))
|
|
}
|
|
|
|
// SetDoneawayStatus sets DoneawayStatus, Tag 20103.
|
|
func (m ExecutionReport) SetDoneawayStatus(v string) {
|
|
m.Set(field.NewDoneawayStatus(v))
|
|
}
|
|
|
|
// SetQuoteSeen sets QuoteSeen, Tag 20104.
|
|
func (m ExecutionReport) SetQuoteSeen(v int) {
|
|
m.Set(field.NewQuoteSeen(v))
|
|
}
|
|
|
|
// SetBestBid1 sets BestBid1, Tag 20105.
|
|
func (m ExecutionReport) SetBestBid1(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewBestBid1(value, scale))
|
|
}
|
|
|
|
// SetBestBid2 sets BestBid2, Tag 20106.
|
|
func (m ExecutionReport) SetBestBid2(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewBestBid2(value, scale))
|
|
}
|
|
|
|
// SetBestOffer1 sets BestOffer1, Tag 20107.
|
|
func (m ExecutionReport) SetBestOffer1(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewBestOffer1(value, scale))
|
|
}
|
|
|
|
// SetBestOffer2 sets BestOffer2, Tag 20108.
|
|
func (m ExecutionReport) SetBestOffer2(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewBestOffer2(value, scale))
|
|
}
|
|
|
|
// SetAverageBidOfferSpread sets AverageBidOfferSpread, Tag 20109.
|
|
func (m ExecutionReport) SetAverageBidOfferSpread(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewAverageBidOfferSpread(value, scale))
|
|
}
|
|
|
|
// SetCoverStatus sets CoverStatus, Tag 20110.
|
|
func (m ExecutionReport) SetCoverStatus(v string) {
|
|
m.Set(field.NewCoverStatus(v))
|
|
}
|
|
|
|
// SetCoverPrice sets CoverPrice, Tag 20111.
|
|
func (m ExecutionReport) SetCoverPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewCoverPrice(value, scale))
|
|
}
|
|
|
|
// SetOutrightPrice sets OutrightPrice, Tag 20115.
|
|
func (m ExecutionReport) SetOutrightPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewOutrightPrice(value, scale))
|
|
}
|
|
|
|
// SetOutstandingAmount sets OutstandingAmount, Tag 20130.
|
|
func (m ExecutionReport) SetOutstandingAmount(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewOutstandingAmount(value, scale))
|
|
}
|
|
|
|
// SetLeadManagers sets LeadManagers, Tag 20138.
|
|
func (m ExecutionReport) SetLeadManagers(v string) {
|
|
m.Set(field.NewLeadManagers(v))
|
|
}
|
|
|
|
// SetNoCalcProvided sets NoCalcProvided, Tag 20140.
|
|
func (m ExecutionReport) SetNoCalcProvided(v bool) {
|
|
m.Set(field.NewNoCalcProvided(v))
|
|
}
|
|
|
|
// SetPricingTier sets PricingTier, Tag 20147.
|
|
func (m ExecutionReport) SetPricingTier(v string) {
|
|
m.Set(field.NewPricingTier(v))
|
|
}
|
|
|
|
// SetBestQuote sets BestQuote, Tag 20155.
|
|
func (m ExecutionReport) SetBestQuote(v string) {
|
|
m.Set(field.NewBestQuote(v))
|
|
}
|
|
|
|
// SetFirstCouponPaymentDate sets FirstCouponPaymentDate, Tag 20175.
|
|
func (m ExecutionReport) SetFirstCouponPaymentDate(v string) {
|
|
m.Set(field.NewFirstCouponPaymentDate(v))
|
|
}
|
|
|
|
// SetNextCouponRate sets NextCouponRate, Tag 20179.
|
|
func (m ExecutionReport) SetNextCouponRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewNextCouponRate(value, scale))
|
|
}
|
|
|
|
// SetCallDate sets CallDate, Tag 20222.
|
|
func (m ExecutionReport) SetCallDate(v string) {
|
|
m.Set(field.NewCallDate(v))
|
|
}
|
|
|
|
// SetCallType sets CallType, Tag 20223.
|
|
func (m ExecutionReport) SetCallType(v string) {
|
|
m.Set(field.NewCallType(v))
|
|
}
|
|
|
|
// SetRegulatoryType sets RegulatoryType, Tag 20227.
|
|
func (m ExecutionReport) SetRegulatoryType(v string) {
|
|
m.Set(field.NewRegulatoryType(v))
|
|
}
|
|
|
|
// SetTradeAxeIndicator sets TradeAxeIndicator, Tag 20232.
|
|
func (m ExecutionReport) SetTradeAxeIndicator(v string) {
|
|
m.Set(field.NewTradeAxeIndicator(v))
|
|
}
|
|
|
|
// SetHDGQTY sets HDGQTY, Tag 20250.
|
|
func (m ExecutionReport) SetHDGQTY(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewHDGQTY(value, scale))
|
|
}
|
|
|
|
// SetIntermediated sets Intermediated, Tag 20262.
|
|
func (m ExecutionReport) SetIntermediated(v bool) {
|
|
m.Set(field.NewIntermediated(v))
|
|
}
|
|
|
|
// SetMarketSegment sets MarketSegment, Tag 20265.
|
|
func (m ExecutionReport) SetMarketSegment(v string) {
|
|
m.Set(field.NewMarketSegment(v))
|
|
}
|
|
|
|
// SetCallPrice sets CallPrice, Tag 20266.
|
|
func (m ExecutionReport) SetCallPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewCallPrice(value, scale))
|
|
}
|
|
|
|
// SetTotNoOfMessages sets TotNoOfMessages, Tag 20394.
|
|
func (m ExecutionReport) SetTotNoOfMessages(v int) {
|
|
m.Set(field.NewTotNoOfMessages(v))
|
|
}
|
|
|
|
// SetMessageNo sets MessageNo, Tag 20395.
|
|
func (m ExecutionReport) SetMessageNo(v int) {
|
|
m.Set(field.NewMessageNo(v))
|
|
}
|
|
|
|
// SetNoHedge sets NoHedge, Tag 20630.
|
|
func (m ExecutionReport) SetNoHedge(v bool) {
|
|
m.Set(field.NewNoHedge(v))
|
|
}
|
|
|
|
// SetBenchmarkYield sets BenchmarkYield, Tag 22570.
|
|
func (m ExecutionReport) SetBenchmarkYield(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewBenchmarkYield(value, scale))
|
|
}
|
|
|
|
// SetUseDealerBenchmark sets UseDealerBenchmark, Tag 22576.
|
|
func (m ExecutionReport) SetUseDealerBenchmark(v bool) {
|
|
m.Set(field.NewUseDealerBenchmark(v))
|
|
}
|
|
|
|
// SetFxRate sets FxRate, Tag 22630.
|
|
func (m ExecutionReport) SetFxRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewFxRate(value, scale))
|
|
}
|
|
|
|
// SetConfCoriBook sets ConfCoriBook, Tag 22631.
|
|
func (m ExecutionReport) SetConfCoriBook(v string) {
|
|
m.Set(field.NewConfCoriBook(v))
|
|
}
|
|
|
|
// SetConfTrsyBook sets ConfTrsyBook, Tag 22632.
|
|
func (m ExecutionReport) SetConfTrsyBook(v string) {
|
|
m.Set(field.NewConfTrsyBook(v))
|
|
}
|
|
|
|
// SetOtherTrdRefID sets OtherTrdRefID, Tag 22634.
|
|
func (m ExecutionReport) SetOtherTrdRefID(v string) {
|
|
m.Set(field.NewOtherTrdRefID(v))
|
|
}
|
|
|
|
// SetTradeSummary sets TradeSummary, Tag 22636.
|
|
func (m ExecutionReport) SetTradeSummary(v bool) {
|
|
m.Set(field.NewTradeSummary(v))
|
|
}
|
|
|
|
// SetDealerInternalNote sets DealerInternalNote, Tag 22637.
|
|
func (m ExecutionReport) SetDealerInternalNote(v string) {
|
|
m.Set(field.NewDealerInternalNote(v))
|
|
}
|
|
|
|
// SetHedgeIsPartOfNetHedge sets HedgeIsPartOfNetHedge, Tag 22638.
|
|
func (m ExecutionReport) SetHedgeIsPartOfNetHedge(v bool) {
|
|
m.Set(field.NewHedgeIsPartOfNetHedge(v))
|
|
}
|
|
|
|
// SetNegotiationTime sets NegotiationTime, Tag 22639.
|
|
func (m ExecutionReport) SetNegotiationTime(v string) {
|
|
m.Set(field.NewNegotiationTime(v))
|
|
}
|
|
|
|
// SetDealerInternalNote2 sets DealerInternalNote2, Tag 22640.
|
|
func (m ExecutionReport) SetDealerInternalNote2(v string) {
|
|
m.Set(field.NewDealerInternalNote2(v))
|
|
}
|
|
|
|
// SetIntermediatedTradeType sets IntermediatedTradeType, Tag 22649.
|
|
func (m ExecutionReport) SetIntermediatedTradeType(v string) {
|
|
m.Set(field.NewIntermediatedTradeType(v))
|
|
}
|
|
|
|
// SetLinkedTrdRefID sets LinkedTrdRefID, Tag 22650.
|
|
func (m ExecutionReport) SetLinkedTrdRefID(v string) {
|
|
m.Set(field.NewLinkedTrdRefID(v))
|
|
}
|
|
|
|
// SetClientTradingCapacity sets ClientTradingCapacity, Tag 23060.
|
|
func (m ExecutionReport) SetClientTradingCapacity(v string) {
|
|
m.Set(field.NewClientTradingCapacity(v))
|
|
}
|
|
|
|
// SetDealerTradingCapacity sets DealerTradingCapacity, Tag 23061.
|
|
func (m ExecutionReport) SetDealerTradingCapacity(v string) {
|
|
m.Set(field.NewDealerTradingCapacity(v))
|
|
}
|
|
|
|
// SetShortSellingIndicator sets ShortSellingIndicator, Tag 23066.
|
|
func (m ExecutionReport) SetShortSellingIndicator(v int) {
|
|
m.Set(field.NewShortSellingIndicator(v))
|
|
}
|
|
|
|
// SetMiFIDMIC sets MiFIDMIC, Tag 23068.
|
|
func (m ExecutionReport) SetMiFIDMIC(v string) {
|
|
m.Set(field.NewMiFIDMIC(v))
|
|
}
|
|
|
|
// SetOnMTF sets OnMTF, Tag 23070.
|
|
func (m ExecutionReport) SetOnMTF(v bool) {
|
|
m.Set(field.NewOnMTF(v))
|
|
}
|
|
|
|
// SetPortfolioTrade sets PortfolioTrade, Tag 23079.
|
|
func (m ExecutionReport) SetPortfolioTrade(v bool) {
|
|
m.Set(field.NewPortfolioTrade(v))
|
|
}
|
|
|
|
// SetComplexTradeID sets ComplexTradeID, Tag 23096.
|
|
func (m ExecutionReport) SetComplexTradeID(v string) {
|
|
m.Set(field.NewComplexTradeID(v))
|
|
}
|
|
|
|
// SetPriceSrcVal sets PriceSrcVal, Tag 23097.
|
|
func (m ExecutionReport) SetPriceSrcVal(v string) {
|
|
m.Set(field.NewPriceSrcVal(v))
|
|
}
|
|
|
|
// SetPriceSrcTime sets PriceSrcTime, Tag 23099.
|
|
func (m ExecutionReport) SetPriceSrcTime(v string) {
|
|
m.Set(field.NewPriceSrcTime(v))
|
|
}
|
|
|
|
// SetPriceSrcSide sets PriceSrcSide, Tag 23100.
|
|
func (m ExecutionReport) SetPriceSrcSide(v string) {
|
|
m.Set(field.NewPriceSrcSide(v))
|
|
}
|
|
|
|
// SetPriceSrcOffType sets PriceSrcOffType, Tag 23101.
|
|
func (m ExecutionReport) SetPriceSrcOffType(v int) {
|
|
m.Set(field.NewPriceSrcOffType(v))
|
|
}
|
|
|
|
// SetCoopStatus sets CoopStatus, Tag 23670.
|
|
func (m ExecutionReport) SetCoopStatus(v string) {
|
|
m.Set(field.NewCoopStatus(v))
|
|
}
|
|
|
|
// SetImpliedCoverProceeds sets ImpliedCoverProceeds, Tag 23671.
|
|
func (m ExecutionReport) SetImpliedCoverProceeds(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewImpliedCoverProceeds(value, scale))
|
|
}
|
|
|
|
// GetAccount gets Account, Tag 1.
|
|
func (m ExecutionReport) GetAccount() (v string, err quickfix.MessageRejectError) {
|
|
var f field.AccountField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetAvgPx gets AvgPx, Tag 6.
|
|
func (m ExecutionReport) GetAvgPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.AvgPxField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetClOrdID gets ClOrdID, Tag 11.
|
|
func (m ExecutionReport) GetClOrdID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ClOrdIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCommission gets Commission, Tag 12.
|
|
func (m ExecutionReport) GetCommission() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.CommissionField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCommType gets CommType, Tag 13.
|
|
func (m ExecutionReport) GetCommType() (v enum.CommType, err quickfix.MessageRejectError) {
|
|
var f field.CommTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCumQty gets CumQty, Tag 14.
|
|
func (m ExecutionReport) GetCumQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.CumQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCurrency gets Currency, Tag 15.
|
|
func (m ExecutionReport) GetCurrency() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CurrencyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExecID gets ExecID, Tag 17.
|
|
func (m ExecutionReport) GetExecID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ExecIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExecInst gets ExecInst, Tag 18.
|
|
func (m ExecutionReport) GetExecInst() (v enum.ExecInst, err quickfix.MessageRejectError) {
|
|
var f field.ExecInstField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExecRefID gets ExecRefID, Tag 19.
|
|
func (m ExecutionReport) GetExecRefID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ExecRefIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetHandlInst gets HandlInst, Tag 21.
|
|
func (m ExecutionReport) GetHandlInst() (v enum.HandlInst, err quickfix.MessageRejectError) {
|
|
var f field.HandlInstField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityIDSource gets SecurityIDSource, Tag 22.
|
|
func (m ExecutionReport) GetSecurityIDSource() (v enum.SecurityIDSource, err quickfix.MessageRejectError) {
|
|
var f field.SecurityIDSourceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastCapacity gets LastCapacity, Tag 29.
|
|
func (m ExecutionReport) GetLastCapacity() (v enum.LastCapacity, err quickfix.MessageRejectError) {
|
|
var f field.LastCapacityField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastMkt gets LastMkt, Tag 30.
|
|
func (m ExecutionReport) GetLastMkt() (v string, err quickfix.MessageRejectError) {
|
|
var f field.LastMktField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastPx gets LastPx, Tag 31.
|
|
func (m ExecutionReport) GetLastPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LastPxField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastQty gets LastQty, Tag 32.
|
|
func (m ExecutionReport) GetLastQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LastQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrderID gets OrderID, Tag 37.
|
|
func (m ExecutionReport) GetOrderID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.OrderIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrderQty gets OrderQty, Tag 38.
|
|
func (m ExecutionReport) GetOrderQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.OrderQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrdStatus gets OrdStatus, Tag 39.
|
|
func (m ExecutionReport) GetOrdStatus() (v enum.OrdStatus, err quickfix.MessageRejectError) {
|
|
var f field.OrdStatusField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrdType gets OrdType, Tag 40.
|
|
func (m ExecutionReport) GetOrdType() (v enum.OrdType, err quickfix.MessageRejectError) {
|
|
var f field.OrdTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrigClOrdID gets OrigClOrdID, Tag 41.
|
|
func (m ExecutionReport) GetOrigClOrdID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.OrigClOrdIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPrice gets Price, Tag 44.
|
|
func (m ExecutionReport) GetPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.PriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityID gets SecurityID, Tag 48.
|
|
func (m ExecutionReport) GetSecurityID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecurityIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSide gets Side, Tag 54.
|
|
func (m ExecutionReport) GetSide() (v enum.Side, err quickfix.MessageRejectError) {
|
|
var f field.SideField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSymbol gets Symbol, Tag 55.
|
|
func (m ExecutionReport) GetSymbol() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SymbolField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetText gets Text, Tag 58.
|
|
func (m ExecutionReport) GetText() (v string, err quickfix.MessageRejectError) {
|
|
var f field.TextField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTimeInForce gets TimeInForce, Tag 59.
|
|
func (m ExecutionReport) GetTimeInForce() (v enum.TimeInForce, err quickfix.MessageRejectError) {
|
|
var f field.TimeInForceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTransactTime gets TransactTime, Tag 60.
|
|
func (m ExecutionReport) GetTransactTime() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.TransactTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlType gets SettlType, Tag 63.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetSettlDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettlDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSymbolSfx gets SymbolSfx, Tag 65.
|
|
func (m ExecutionReport) GetSymbolSfx() (v enum.SymbolSfx, err quickfix.MessageRejectError) {
|
|
var f field.SymbolSfxField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetListID gets ListID, Tag 66.
|
|
func (m ExecutionReport) GetListID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ListIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTradeDate gets TradeDate, Tag 75.
|
|
func (m ExecutionReport) GetTradeDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.TradeDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPositionEffect gets PositionEffect, Tag 77.
|
|
func (m ExecutionReport) GetPositionEffect() (v enum.PositionEffect, err quickfix.MessageRejectError) {
|
|
var f field.PositionEffectField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStopPx gets StopPx, Tag 99.
|
|
func (m ExecutionReport) GetStopPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.StopPxField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrdRejReason gets OrdRejReason, Tag 103.
|
|
func (m ExecutionReport) GetOrdRejReason() (v enum.OrdRejReason, err quickfix.MessageRejectError) {
|
|
var f field.OrdRejReasonField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetIssuer gets Issuer, Tag 106.
|
|
func (m ExecutionReport) GetIssuer() (v string, err quickfix.MessageRejectError) {
|
|
var f field.IssuerField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityDesc gets SecurityDesc, Tag 107.
|
|
func (m ExecutionReport) GetSecurityDesc() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecurityDescField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMinQty gets MinQty, Tag 110.
|
|
func (m ExecutionReport) GetMinQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.MinQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMaxFloor gets MaxFloor, Tag 111.
|
|
func (m ExecutionReport) GetMaxFloor() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.MaxFloorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetReportToExch gets ReportToExch, Tag 113.
|
|
func (m ExecutionReport) GetReportToExch() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.ReportToExchField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNetMoney gets NetMoney, Tag 118.
|
|
func (m ExecutionReport) GetNetMoney() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.NetMoneyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlCurrAmt gets SettlCurrAmt, Tag 119.
|
|
func (m ExecutionReport) GetSettlCurrAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.SettlCurrAmtField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlCurrency gets SettlCurrency, Tag 120.
|
|
func (m ExecutionReport) GetSettlCurrency() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettlCurrencyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExpireTime gets ExpireTime, Tag 126.
|
|
func (m ExecutionReport) GetExpireTime() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.ExpireTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBidPx gets BidPx, Tag 132.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetOfferPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.OfferPxField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBidSize gets BidSize, Tag 134.
|
|
func (m ExecutionReport) GetBidSize() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.BidSizeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOfferSize gets OfferSize, Tag 135.
|
|
func (m ExecutionReport) GetOfferSize() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.OfferSizeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoMiscFees gets NoMiscFees, Tag 136.
|
|
func (m ExecutionReport) GetNoMiscFees() (NoMiscFeesRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoMiscFeesRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetExecType gets ExecType, Tag 150.
|
|
func (m ExecutionReport) GetExecType() (v enum.ExecType, err quickfix.MessageRejectError) {
|
|
var f field.ExecTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLeavesQty gets LeavesQty, Tag 151.
|
|
func (m ExecutionReport) GetLeavesQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LeavesQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCashOrderQty gets CashOrderQty, Tag 152.
|
|
func (m ExecutionReport) GetCashOrderQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.CashOrderQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlCurrFxRate gets SettlCurrFxRate, Tag 155.
|
|
func (m ExecutionReport) GetSettlCurrFxRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.SettlCurrFxRateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlCurrFxRateCalc gets SettlCurrFxRateCalc, Tag 156.
|
|
func (m ExecutionReport) GetSettlCurrFxRateCalc() (v enum.SettlCurrFxRateCalc, err quickfix.MessageRejectError) {
|
|
var f field.SettlCurrFxRateCalcField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNumDaysInterest gets NumDaysInterest, Tag 157.
|
|
func (m ExecutionReport) GetNumDaysInterest() (v int, err quickfix.MessageRejectError) {
|
|
var f field.NumDaysInterestField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetAccruedInterestRate gets AccruedInterestRate, Tag 158.
|
|
func (m ExecutionReport) GetAccruedInterestRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.AccruedInterestRateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetAccruedInterestAmt gets AccruedInterestAmt, Tag 159.
|
|
func (m ExecutionReport) GetAccruedInterestAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.AccruedInterestAmtField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityType gets SecurityType, Tag 167.
|
|
func (m ExecutionReport) GetSecurityType() (v enum.SecurityType, err quickfix.MessageRejectError) {
|
|
var f field.SecurityTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEffectiveTime gets EffectiveTime, Tag 168.
|
|
func (m ExecutionReport) GetEffectiveTime() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.EffectiveTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrderQty2 gets OrderQty2, Tag 192.
|
|
func (m ExecutionReport) GetOrderQty2() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.OrderQty2Field
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlDate2 gets SettlDate2, Tag 193.
|
|
func (m ExecutionReport) GetSettlDate2() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettlDate2Field
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastSpotRate gets LastSpotRate, Tag 194.
|
|
func (m ExecutionReport) GetLastSpotRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LastSpotRateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastForwardPoints gets LastForwardPoints, Tag 195.
|
|
func (m ExecutionReport) GetLastForwardPoints() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LastForwardPointsField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecondaryOrderID gets SecondaryOrderID, Tag 198.
|
|
func (m ExecutionReport) GetSecondaryOrderID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecondaryOrderIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMaturityMonthYear gets MaturityMonthYear, Tag 200.
|
|
func (m ExecutionReport) GetMaturityMonthYear() (v string, err quickfix.MessageRejectError) {
|
|
var f field.MaturityMonthYearField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStrikePrice gets StrikePrice, Tag 202.
|
|
func (m ExecutionReport) GetStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.StrikePriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOptAttribute gets OptAttribute, Tag 206.
|
|
func (m ExecutionReport) GetOptAttribute() (v string, err quickfix.MessageRejectError) {
|
|
var f field.OptAttributeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityExchange gets SecurityExchange, Tag 207.
|
|
func (m ExecutionReport) GetSecurityExchange() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecurityExchangeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMaxShow gets MaxShow, Tag 210.
|
|
func (m ExecutionReport) GetMaxShow() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.MaxShowField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPegOffsetValue gets PegOffsetValue, Tag 211.
|
|
func (m ExecutionReport) GetPegOffsetValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.PegOffsetValueField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSpread gets Spread, Tag 218.
|
|
func (m ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) GetBenchmarkCurvePoint() (v string, err quickfix.MessageRejectError) {
|
|
var f field.BenchmarkCurvePointField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCouponRate gets CouponRate, Tag 223.
|
|
func (m ExecutionReport) GetCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.CouponRateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCouponPaymentDate gets CouponPaymentDate, Tag 224.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetIssueDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.IssueDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRepurchaseTerm gets RepurchaseTerm, Tag 226.
|
|
func (m ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) GetFactor() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.FactorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTradeOriginationDate gets TradeOriginationDate, Tag 229.
|
|
func (m ExecutionReport) GetTradeOriginationDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.TradeOriginationDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExDate gets ExDate, Tag 230.
|
|
func (m ExecutionReport) GetExDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ExDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetContractMultiplier gets ContractMultiplier, Tag 231.
|
|
func (m ExecutionReport) GetContractMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ContractMultiplierField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoStipulations gets NoStipulations, Tag 232.
|
|
func (m ExecutionReport) GetNoStipulations() (NoStipulationsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoStipulationsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetYieldType gets YieldType, Tag 235.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetYield() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.YieldField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTotalTakedown gets TotalTakedown, Tag 237.
|
|
func (m ExecutionReport) GetTotalTakedown() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.TotalTakedownField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetConcession gets Concession, Tag 238.
|
|
func (m ExecutionReport) GetConcession() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ConcessionField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRepoCollateralSecurityType gets RepoCollateralSecurityType, Tag 239.
|
|
func (m ExecutionReport) GetRepoCollateralSecurityType() (v int, err quickfix.MessageRejectError) {
|
|
var f field.RepoCollateralSecurityTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRedemptionDate gets RedemptionDate, Tag 240.
|
|
func (m ExecutionReport) GetRedemptionDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.RedemptionDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCreditRating gets CreditRating, Tag 255.
|
|
func (m ExecutionReport) GetCreditRating() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CreditRatingField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTradedFlatSwitch gets TradedFlatSwitch, Tag 258.
|
|
func (m ExecutionReport) GetTradedFlatSwitch() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.TradedFlatSwitchField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBasisFeatureDate gets BasisFeatureDate, Tag 259.
|
|
func (m ExecutionReport) GetBasisFeatureDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.BasisFeatureDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBasisFeaturePrice gets BasisFeaturePrice, Tag 260.
|
|
func (m ExecutionReport) GetBasisFeaturePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.BasisFeaturePriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTradingSessionID gets TradingSessionID, Tag 336.
|
|
func (m ExecutionReport) GetTradingSessionID() (v enum.TradingSessionID, err quickfix.MessageRejectError) {
|
|
var f field.TradingSessionIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEncodedIssuerLen gets EncodedIssuerLen, Tag 348.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetEncodedIssuer() (v string, err quickfix.MessageRejectError) {
|
|
var f field.EncodedIssuerField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEncodedSecurityDescLen gets EncodedSecurityDescLen, Tag 350.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetEncodedSecurityDesc() (v string, err quickfix.MessageRejectError) {
|
|
var f field.EncodedSecurityDescField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEncodedTextLen gets EncodedTextLen, Tag 354.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetEncodedText() (v string, err quickfix.MessageRejectError) {
|
|
var f field.EncodedTextField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetComplianceID gets ComplianceID, Tag 376.
|
|
func (m ExecutionReport) GetComplianceID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ComplianceIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSolicitedFlag gets SolicitedFlag, Tag 377.
|
|
func (m ExecutionReport) GetSolicitedFlag() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.SolicitedFlagField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExecRestatementReason gets ExecRestatementReason, Tag 378.
|
|
func (m ExecutionReport) GetExecRestatementReason() (v enum.ExecRestatementReason, err quickfix.MessageRejectError) {
|
|
var f field.ExecRestatementReasonField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetGrossTradeAmt gets GrossTradeAmt, Tag 381.
|
|
func (m ExecutionReport) GetGrossTradeAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.GrossTradeAmtField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoContraBrokers gets NoContraBrokers, Tag 382.
|
|
func (m ExecutionReport) GetNoContraBrokers() (NoContraBrokersRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoContraBrokersRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetDiscretionInst gets DiscretionInst, Tag 388.
|
|
func (m ExecutionReport) GetDiscretionInst() (v enum.DiscretionInst, err quickfix.MessageRejectError) {
|
|
var f field.DiscretionInstField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDiscretionOffsetValue gets DiscretionOffsetValue, Tag 389.
|
|
func (m ExecutionReport) GetDiscretionOffsetValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.DiscretionOffsetValueField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPriceType gets PriceType, Tag 423.
|
|
func (m ExecutionReport) GetPriceType() (v enum.PriceType, err quickfix.MessageRejectError) {
|
|
var f field.PriceTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDayOrderQty gets DayOrderQty, Tag 424.
|
|
func (m ExecutionReport) GetDayOrderQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.DayOrderQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDayCumQty gets DayCumQty, Tag 425.
|
|
func (m ExecutionReport) GetDayCumQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.DayCumQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDayAvgPx gets DayAvgPx, Tag 426.
|
|
func (m ExecutionReport) GetDayAvgPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.DayAvgPxField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetGTBookingInst gets GTBookingInst, Tag 427.
|
|
func (m ExecutionReport) GetGTBookingInst() (v enum.GTBookingInst, err quickfix.MessageRejectError) {
|
|
var f field.GTBookingInstField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExpireDate gets ExpireDate, Tag 432.
|
|
func (m ExecutionReport) GetExpireDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ExpireDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMultiLegReportingType gets MultiLegReportingType, Tag 442.
|
|
func (m ExecutionReport) GetMultiLegReportingType() (v enum.MultiLegReportingType, err quickfix.MessageRejectError) {
|
|
var f field.MultiLegReportingTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoPartyIDs gets NoPartyIDs, Tag 453.
|
|
func (m ExecutionReport) GetNoPartyIDs() (NoPartyIDsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoPartyIDsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetNoSecurityAltID gets NoSecurityAltID, Tag 454.
|
|
func (m ExecutionReport) GetNoSecurityAltID() (NoSecurityAltIDRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoSecurityAltIDRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetProduct gets Product, Tag 460.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetCFICode() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CFICodeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTestMessageIndicator gets TestMessageIndicator, Tag 464.
|
|
func (m ExecutionReport) GetTestMessageIndicator() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.TestMessageIndicatorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRoundingDirection gets RoundingDirection, Tag 468.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetRoundingModulus() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.RoundingModulusField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCountryOfIssue gets CountryOfIssue, Tag 470.
|
|
func (m ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) GetLocaleOfIssue() (v string, err quickfix.MessageRejectError) {
|
|
var f field.LocaleOfIssueField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCommCurrency gets CommCurrency, Tag 479.
|
|
func (m ExecutionReport) GetCommCurrency() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CommCurrencyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCancellationRights gets CancellationRights, Tag 480.
|
|
func (m ExecutionReport) GetCancellationRights() (v enum.CancellationRights, err quickfix.MessageRejectError) {
|
|
var f field.CancellationRightsField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMoneyLaunderingStatus gets MoneyLaunderingStatus, Tag 481.
|
|
func (m ExecutionReport) GetMoneyLaunderingStatus() (v enum.MoneyLaunderingStatus, err quickfix.MessageRejectError) {
|
|
var f field.MoneyLaunderingStatusField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTransBkdTime gets TransBkdTime, Tag 483.
|
|
func (m ExecutionReport) GetTransBkdTime() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.TransBkdTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExecPriceType gets ExecPriceType, Tag 484.
|
|
func (m ExecutionReport) GetExecPriceType() (v enum.ExecPriceType, err quickfix.MessageRejectError) {
|
|
var f field.ExecPriceTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExecPriceAdjustment gets ExecPriceAdjustment, Tag 485.
|
|
func (m ExecutionReport) GetExecPriceAdjustment() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ExecPriceAdjustmentField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDesignation gets Designation, Tag 494.
|
|
func (m ExecutionReport) GetDesignation() (v string, err quickfix.MessageRejectError) {
|
|
var f field.DesignationField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetFundRenewWaiv gets FundRenewWaiv, Tag 497.
|
|
func (m ExecutionReport) GetFundRenewWaiv() (v enum.FundRenewWaiv, err quickfix.MessageRejectError) {
|
|
var f field.FundRenewWaivField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRegistID gets RegistID, Tag 513.
|
|
func (m ExecutionReport) GetRegistID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.RegistIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExecValuationPoint gets ExecValuationPoint, Tag 515.
|
|
func (m ExecutionReport) GetExecValuationPoint() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.ExecValuationPointField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrderPercent gets OrderPercent, Tag 516.
|
|
func (m ExecutionReport) GetOrderPercent() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.OrderPercentField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoContAmts gets NoContAmts, Tag 518.
|
|
func (m ExecutionReport) GetNoContAmts() (NoContAmtsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoContAmtsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetSecondaryClOrdID gets SecondaryClOrdID, Tag 526.
|
|
func (m ExecutionReport) GetSecondaryClOrdID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecondaryClOrdIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecondaryExecID gets SecondaryExecID, Tag 527.
|
|
func (m ExecutionReport) GetSecondaryExecID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecondaryExecIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrderCapacity gets OrderCapacity, Tag 528.
|
|
func (m ExecutionReport) GetOrderCapacity() (v enum.OrderCapacity, err quickfix.MessageRejectError) {
|
|
var f field.OrderCapacityField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrderRestrictions gets OrderRestrictions, Tag 529.
|
|
func (m ExecutionReport) GetOrderRestrictions() (v enum.OrderRestrictions, err quickfix.MessageRejectError) {
|
|
var f field.OrderRestrictionsField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMaturityDate gets MaturityDate, Tag 541.
|
|
func (m ExecutionReport) GetMaturityDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.MaturityDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetInstrRegistry gets InstrRegistry, Tag 543.
|
|
func (m ExecutionReport) GetInstrRegistry() (v enum.InstrRegistry, err quickfix.MessageRejectError) {
|
|
var f field.InstrRegistryField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCashMargin gets CashMargin, Tag 544.
|
|
func (m ExecutionReport) GetCashMargin() (v enum.CashMargin, err quickfix.MessageRejectError) {
|
|
var f field.CashMarginField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCrossID gets CrossID, Tag 548.
|
|
func (m ExecutionReport) GetCrossID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CrossIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCrossType gets CrossType, Tag 549.
|
|
func (m ExecutionReport) GetCrossType() (v enum.CrossType, err quickfix.MessageRejectError) {
|
|
var f field.CrossTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrigCrossID gets OrigCrossID, Tag 551.
|
|
func (m ExecutionReport) GetOrigCrossID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.OrigCrossIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoLegs gets NoLegs, Tag 555.
|
|
func (m ExecutionReport) GetNoLegs() (NoLegsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoLegsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetAccountType gets AccountType, Tag 581.
|
|
func (m ExecutionReport) GetAccountType() (v enum.AccountType, err quickfix.MessageRejectError) {
|
|
var f field.AccountTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCustOrderCapacity gets CustOrderCapacity, Tag 582.
|
|
func (m ExecutionReport) GetCustOrderCapacity() (v enum.CustOrderCapacity, err quickfix.MessageRejectError) {
|
|
var f field.CustOrderCapacityField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetClOrdLinkID gets ClOrdLinkID, Tag 583.
|
|
func (m ExecutionReport) GetClOrdLinkID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ClOrdLinkIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMassStatusReqID gets MassStatusReqID, Tag 584.
|
|
func (m ExecutionReport) GetMassStatusReqID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.MassStatusReqIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDayBookingInst gets DayBookingInst, Tag 589.
|
|
func (m ExecutionReport) GetDayBookingInst() (v enum.DayBookingInst, err quickfix.MessageRejectError) {
|
|
var f field.DayBookingInstField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBookingUnit gets BookingUnit, Tag 590.
|
|
func (m ExecutionReport) GetBookingUnit() (v enum.BookingUnit, err quickfix.MessageRejectError) {
|
|
var f field.BookingUnitField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPreallocMethod gets PreallocMethod, Tag 591.
|
|
func (m ExecutionReport) GetPreallocMethod() (v enum.PreallocMethod, err quickfix.MessageRejectError) {
|
|
var f field.PreallocMethodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTradingSessionSubID gets TradingSessionSubID, Tag 625.
|
|
func (m ExecutionReport) GetTradingSessionSubID() (v enum.TradingSessionSubID, err quickfix.MessageRejectError) {
|
|
var f field.TradingSessionSubIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetClearingFeeIndicator gets ClearingFeeIndicator, Tag 635.
|
|
func (m ExecutionReport) GetClearingFeeIndicator() (v enum.ClearingFeeIndicator, err quickfix.MessageRejectError) {
|
|
var f field.ClearingFeeIndicatorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetWorkingIndicator gets WorkingIndicator, Tag 636.
|
|
func (m ExecutionReport) GetWorkingIndicator() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.WorkingIndicatorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPriorityIndicator gets PriorityIndicator, Tag 638.
|
|
func (m ExecutionReport) GetPriorityIndicator() (v enum.PriorityIndicator, err quickfix.MessageRejectError) {
|
|
var f field.PriorityIndicatorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPriceImprovement gets PriceImprovement, Tag 639.
|
|
func (m ExecutionReport) GetPriceImprovement() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.PriceImprovementField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastForwardPoints2 gets LastForwardPoints2, Tag 641.
|
|
func (m ExecutionReport) GetLastForwardPoints2() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LastForwardPoints2Field
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetUnderlyingLastPx gets UnderlyingLastPx, Tag 651.
|
|
func (m ExecutionReport) GetUnderlyingLastPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.UnderlyingLastPxField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetUnderlyingLastQty gets UnderlyingLastQty, Tag 652.
|
|
func (m ExecutionReport) GetUnderlyingLastQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.UnderlyingLastQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetAcctIDSource gets AcctIDSource, Tag 660.
|
|
func (m ExecutionReport) GetAcctIDSource() (v enum.AcctIDSource, err quickfix.MessageRejectError) {
|
|
var f field.AcctIDSourceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBenchmarkPrice gets BenchmarkPrice, Tag 662.
|
|
func (m ExecutionReport) GetBenchmarkPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.BenchmarkPriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBenchmarkPriceType gets BenchmarkPriceType, Tag 663.
|
|
func (m ExecutionReport) GetBenchmarkPriceType() (v int, err quickfix.MessageRejectError) {
|
|
var f field.BenchmarkPriceTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetContractSettlMonth gets ContractSettlMonth, Tag 667.
|
|
func (m ExecutionReport) GetContractSettlMonth() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ContractSettlMonthField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastParPx gets LastParPx, Tag 669.
|
|
func (m ExecutionReport) GetLastParPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LastParPxField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPool gets Pool, Tag 691.
|
|
func (m ExecutionReport) GetPool() (v string, err quickfix.MessageRejectError) {
|
|
var f field.PoolField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetQuoteRespID gets QuoteRespID, Tag 693.
|
|
func (m ExecutionReport) GetQuoteRespID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.QuoteRespIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetYieldRedemptionDate gets YieldRedemptionDate, Tag 696.
|
|
func (m ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) GetYieldRedemptionPriceType() (v int, err quickfix.MessageRejectError) {
|
|
var f field.YieldRedemptionPriceTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBenchmarkSecurityID gets BenchmarkSecurityID, Tag 699.
|
|
func (m ExecutionReport) GetBenchmarkSecurityID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.BenchmarkSecurityIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetYieldCalcDate gets YieldCalcDate, Tag 701.
|
|
func (m ExecutionReport) GetYieldCalcDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.YieldCalcDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoUnderlyings gets NoUnderlyings, Tag 711.
|
|
func (m ExecutionReport) GetNoUnderlyings() (NoUnderlyingsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoUnderlyingsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetInterestAtMaturity gets InterestAtMaturity, Tag 738.
|
|
func (m ExecutionReport) GetInterestAtMaturity() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.InterestAtMaturityField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBenchmarkSecurityIDSource gets BenchmarkSecurityIDSource, Tag 761.
|
|
func (m ExecutionReport) GetBenchmarkSecurityIDSource() (v string, err quickfix.MessageRejectError) {
|
|
var f field.BenchmarkSecurityIDSourceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecuritySubType gets SecuritySubType, Tag 762.
|
|
func (m ExecutionReport) GetSecuritySubType() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecuritySubTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBookingType gets BookingType, Tag 775.
|
|
func (m ExecutionReport) GetBookingType() (v enum.BookingType, err quickfix.MessageRejectError) {
|
|
var f field.BookingTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTerminationType gets TerminationType, Tag 788.
|
|
func (m ExecutionReport) GetTerminationType() (v enum.TerminationType, err quickfix.MessageRejectError) {
|
|
var f field.TerminationTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOrdStatusReqID gets OrdStatusReqID, Tag 790.
|
|
func (m ExecutionReport) GetOrdStatusReqID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.OrdStatusReqIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCopyMsgIndicator gets CopyMsgIndicator, Tag 797.
|
|
func (m ExecutionReport) GetCopyMsgIndicator() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.CopyMsgIndicatorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPegMoveType gets PegMoveType, Tag 835.
|
|
func (m ExecutionReport) GetPegMoveType() (v enum.PegMoveType, err quickfix.MessageRejectError) {
|
|
var f field.PegMoveTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPegOffsetType gets PegOffsetType, Tag 836.
|
|
func (m ExecutionReport) GetPegOffsetType() (v enum.PegOffsetType, err quickfix.MessageRejectError) {
|
|
var f field.PegOffsetTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPegLimitType gets PegLimitType, Tag 837.
|
|
func (m ExecutionReport) GetPegLimitType() (v enum.PegLimitType, err quickfix.MessageRejectError) {
|
|
var f field.PegLimitTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPegRoundDirection gets PegRoundDirection, Tag 838.
|
|
func (m ExecutionReport) GetPegRoundDirection() (v enum.PegRoundDirection, err quickfix.MessageRejectError) {
|
|
var f field.PegRoundDirectionField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPeggedPrice gets PeggedPrice, Tag 839.
|
|
func (m ExecutionReport) GetPeggedPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.PeggedPriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPegScope gets PegScope, Tag 840.
|
|
func (m ExecutionReport) GetPegScope() (v enum.PegScope, err quickfix.MessageRejectError) {
|
|
var f field.PegScopeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDiscretionMoveType gets DiscretionMoveType, Tag 841.
|
|
func (m ExecutionReport) GetDiscretionMoveType() (v enum.DiscretionMoveType, err quickfix.MessageRejectError) {
|
|
var f field.DiscretionMoveTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDiscretionOffsetType gets DiscretionOffsetType, Tag 842.
|
|
func (m ExecutionReport) GetDiscretionOffsetType() (v enum.DiscretionOffsetType, err quickfix.MessageRejectError) {
|
|
var f field.DiscretionOffsetTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDiscretionLimitType gets DiscretionLimitType, Tag 843.
|
|
func (m ExecutionReport) GetDiscretionLimitType() (v enum.DiscretionLimitType, err quickfix.MessageRejectError) {
|
|
var f field.DiscretionLimitTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDiscretionRoundDirection gets DiscretionRoundDirection, Tag 844.
|
|
func (m ExecutionReport) GetDiscretionRoundDirection() (v enum.DiscretionRoundDirection, err quickfix.MessageRejectError) {
|
|
var f field.DiscretionRoundDirectionField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDiscretionPrice gets DiscretionPrice, Tag 845.
|
|
func (m ExecutionReport) GetDiscretionPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.DiscretionPriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDiscretionScope gets DiscretionScope, Tag 846.
|
|
func (m ExecutionReport) GetDiscretionScope() (v enum.DiscretionScope, err quickfix.MessageRejectError) {
|
|
var f field.DiscretionScopeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTargetStrategy gets TargetStrategy, Tag 847.
|
|
func (m ExecutionReport) GetTargetStrategy() (v enum.TargetStrategy, err quickfix.MessageRejectError) {
|
|
var f field.TargetStrategyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTargetStrategyParameters gets TargetStrategyParameters, Tag 848.
|
|
func (m ExecutionReport) GetTargetStrategyParameters() (v string, err quickfix.MessageRejectError) {
|
|
var f field.TargetStrategyParametersField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetParticipationRate gets ParticipationRate, Tag 849.
|
|
func (m ExecutionReport) GetParticipationRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ParticipationRateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTargetStrategyPerformance gets TargetStrategyPerformance, Tag 850.
|
|
func (m ExecutionReport) GetTargetStrategyPerformance() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.TargetStrategyPerformanceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastLiquidityInd gets LastLiquidityInd, Tag 851.
|
|
func (m ExecutionReport) GetLastLiquidityInd() (v enum.LastLiquidityInd, err quickfix.MessageRejectError) {
|
|
var f field.LastLiquidityIndField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetQtyType gets QtyType, Tag 854.
|
|
func (m ExecutionReport) GetQtyType() (v enum.QtyType, err quickfix.MessageRejectError) {
|
|
var f field.QtyTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoEvents gets NoEvents, Tag 864.
|
|
func (m ExecutionReport) GetNoEvents() (NoEventsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoEventsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetDatedDate gets DatedDate, Tag 873.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetInterestAccrualDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.InterestAccrualDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCPProgram gets CPProgram, Tag 875.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetCPRegType() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CPRegTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastFragment gets LastFragment, Tag 893.
|
|
func (m ExecutionReport) GetLastFragment() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.LastFragmentField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMarginRatio gets MarginRatio, Tag 898.
|
|
func (m ExecutionReport) GetMarginRatio() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.MarginRatioField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTotNumReports gets TotNumReports, Tag 911.
|
|
func (m ExecutionReport) GetTotNumReports() (v int, err quickfix.MessageRejectError) {
|
|
var f field.TotNumReportsField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastRptRequested gets LastRptRequested, Tag 912.
|
|
func (m ExecutionReport) GetLastRptRequested() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.LastRptRequestedField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetAgreementDesc gets AgreementDesc, Tag 913.
|
|
func (m ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) GetAgreementDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.AgreementDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStartDate gets StartDate, Tag 916.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetEndDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.EndDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetAgreementCurrency gets AgreementCurrency, Tag 918.
|
|
func (m ExecutionReport) GetAgreementCurrency() (v string, err quickfix.MessageRejectError) {
|
|
var f field.AgreementCurrencyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDeliveryType gets DeliveryType, Tag 919.
|
|
func (m ExecutionReport) GetDeliveryType() (v enum.DeliveryType, err quickfix.MessageRejectError) {
|
|
var f field.DeliveryTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEndAccruedInterestAmt gets EndAccruedInterestAmt, Tag 920.
|
|
func (m ExecutionReport) GetEndAccruedInterestAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.EndAccruedInterestAmtField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStartCash gets StartCash, Tag 921.
|
|
func (m ExecutionReport) GetStartCash() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.StartCashField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEndCash gets EndCash, Tag 922.
|
|
func (m ExecutionReport) GetEndCash() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.EndCashField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTimeBracket gets TimeBracket, Tag 943.
|
|
func (m ExecutionReport) GetTimeBracket() (v string, err quickfix.MessageRejectError) {
|
|
var f field.TimeBracketField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStrikeCurrency gets StrikeCurrency, Tag 947.
|
|
func (m ExecutionReport) GetStrikeCurrency() (v string, err quickfix.MessageRejectError) {
|
|
var f field.StrikeCurrencyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTradeID gets TradeID, Tag 1003.
|
|
func (m ExecutionReport) GetTradeID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.TradeIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoRootPartyIDs gets NoRootPartyIDs, Tag 1116.
|
|
func (m ExecutionReport) GetNoRootPartyIDs() (NoRootPartyIDsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoRootPartyIDsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetSecurityXMLLen gets SecurityXMLLen, Tag 1184.
|
|
func (m ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) GetSecurityXMLSchema() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecurityXMLSchemaField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNegotiationMethod gets NegotiationMethod, Tag 2115.
|
|
func (m ExecutionReport) GetNegotiationMethod() (v int, err quickfix.MessageRejectError) {
|
|
var f field.NegotiationMethodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoTrdRegPublications gets NoTrdRegPublications, Tag 2668.
|
|
func (m ExecutionReport) GetNoTrdRegPublications() (NoTrdRegPublicationsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoTrdRegPublicationsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetNoCreditRating gets NoCreditRating, Tag 5114.
|
|
func (m ExecutionReport) GetNoCreditRating() (NoCreditRatingRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoCreditRatingRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetMultipleTickets gets MultipleTickets, Tag 5745.
|
|
func (m ExecutionReport) GetMultipleTickets() (v int, err quickfix.MessageRejectError) {
|
|
var f field.MultipleTicketsField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetReferencePrice gets ReferencePrice, Tag 6087.
|
|
func (m ExecutionReport) GetReferencePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ReferencePriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetIndustryCode gets IndustryCode, Tag 6110.
|
|
func (m ExecutionReport) GetIndustryCode() (v string, err quickfix.MessageRejectError) {
|
|
var f field.IndustryCodeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOwnerTraderID gets OwnerTraderID, Tag 6153.
|
|
func (m ExecutionReport) GetOwnerTraderID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.OwnerTraderIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBenchmarkSymbolSfx gets BenchmarkSymbolSfx, Tag 6633.
|
|
func (m ExecutionReport) GetBenchmarkSymbolSfx() (v string, err quickfix.MessageRejectError) {
|
|
var f field.BenchmarkSymbolSfxField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMultilegRefID gets MultilegRefID, Tag 6735.
|
|
func (m ExecutionReport) GetMultilegRefID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.MultilegRefIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNetPresentValue gets NetPresentValue, Tag 7088.
|
|
func (m ExecutionReport) GetNetPresentValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.NetPresentValueField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDelta gets Delta, Tag 7538.
|
|
func (m ExecutionReport) GetDelta() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.DeltaField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDeltaTransfer gets DeltaTransfer, Tag 7769.
|
|
func (m ExecutionReport) GetDeltaTransfer() (v int, err quickfix.MessageRejectError) {
|
|
var f field.DeltaTransferField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEndDateBusDayAdj gets EndDateBusDayAdj, Tag 20038.
|
|
func (m ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) GetReopeningValue() (v int, err quickfix.MessageRejectError) {
|
|
var f field.ReopeningValueField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExecutionFeeSchedule gets ExecutionFeeSchedule, Tag 20056.
|
|
func (m ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) GetExecutionFeeAmount() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ExecutionFeeAmountField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetWinningPrice gets WinningPrice, Tag 20070.
|
|
func (m ExecutionReport) GetWinningPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.WinningPriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNegotiationType gets NegotiationType, Tag 20073.
|
|
func (m ExecutionReport) GetNegotiationType() (v string, err quickfix.MessageRejectError) {
|
|
var f field.NegotiationTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTimeoutPeriod gets TimeoutPeriod, Tag 20079.
|
|
func (m ExecutionReport) GetTimeoutPeriod() (v int, err quickfix.MessageRejectError) {
|
|
var f field.TimeoutPeriodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoOfDealers gets NoOfDealers, Tag 20086.
|
|
func (m ExecutionReport) GetNoOfDealers() (v int, err quickfix.MessageRejectError) {
|
|
var f field.NoOfDealersField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDoneawayStatus gets DoneawayStatus, Tag 20103.
|
|
func (m ExecutionReport) GetDoneawayStatus() (v string, err quickfix.MessageRejectError) {
|
|
var f field.DoneawayStatusField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetQuoteSeen gets QuoteSeen, Tag 20104.
|
|
func (m ExecutionReport) GetQuoteSeen() (v int, err quickfix.MessageRejectError) {
|
|
var f field.QuoteSeenField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBestBid1 gets BestBid1, Tag 20105.
|
|
func (m ExecutionReport) GetBestBid1() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.BestBid1Field
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBestBid2 gets BestBid2, Tag 20106.
|
|
func (m ExecutionReport) GetBestBid2() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.BestBid2Field
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBestOffer1 gets BestOffer1, Tag 20107.
|
|
func (m ExecutionReport) GetBestOffer1() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.BestOffer1Field
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBestOffer2 gets BestOffer2, Tag 20108.
|
|
func (m ExecutionReport) GetBestOffer2() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.BestOffer2Field
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetAverageBidOfferSpread gets AverageBidOfferSpread, Tag 20109.
|
|
func (m ExecutionReport) GetAverageBidOfferSpread() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.AverageBidOfferSpreadField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCoverStatus gets CoverStatus, Tag 20110.
|
|
func (m ExecutionReport) GetCoverStatus() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CoverStatusField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCoverPrice gets CoverPrice, Tag 20111.
|
|
func (m ExecutionReport) GetCoverPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.CoverPriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOutrightPrice gets OutrightPrice, Tag 20115.
|
|
func (m ExecutionReport) GetOutrightPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.OutrightPriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOutstandingAmount gets OutstandingAmount, Tag 20130.
|
|
func (m ExecutionReport) GetOutstandingAmount() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.OutstandingAmountField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLeadManagers gets LeadManagers, Tag 20138.
|
|
func (m ExecutionReport) GetLeadManagers() (v string, err quickfix.MessageRejectError) {
|
|
var f field.LeadManagersField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoCalcProvided gets NoCalcProvided, Tag 20140.
|
|
func (m ExecutionReport) GetNoCalcProvided() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.NoCalcProvidedField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPricingTier gets PricingTier, Tag 20147.
|
|
func (m ExecutionReport) GetPricingTier() (v string, err quickfix.MessageRejectError) {
|
|
var f field.PricingTierField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBestQuote gets BestQuote, Tag 20155.
|
|
func (m ExecutionReport) GetBestQuote() (v string, err quickfix.MessageRejectError) {
|
|
var f field.BestQuoteField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetFirstCouponPaymentDate gets FirstCouponPaymentDate, Tag 20175.
|
|
func (m ExecutionReport) GetFirstCouponPaymentDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.FirstCouponPaymentDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNextCouponRate gets NextCouponRate, Tag 20179.
|
|
func (m ExecutionReport) GetNextCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.NextCouponRateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCallDate gets CallDate, Tag 20222.
|
|
func (m ExecutionReport) 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 ExecutionReport) GetCallType() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CallTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRegulatoryType gets RegulatoryType, Tag 20227.
|
|
func (m ExecutionReport) GetRegulatoryType() (v string, err quickfix.MessageRejectError) {
|
|
var f field.RegulatoryTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTradeAxeIndicator gets TradeAxeIndicator, Tag 20232.
|
|
func (m ExecutionReport) GetTradeAxeIndicator() (v string, err quickfix.MessageRejectError) {
|
|
var f field.TradeAxeIndicatorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetHDGQTY gets HDGQTY, Tag 20250.
|
|
func (m ExecutionReport) GetHDGQTY() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.HDGQTYField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetIntermediated gets Intermediated, Tag 20262.
|
|
func (m ExecutionReport) GetIntermediated() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.IntermediatedField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMarketSegment gets MarketSegment, Tag 20265.
|
|
func (m ExecutionReport) GetMarketSegment() (v string, err quickfix.MessageRejectError) {
|
|
var f field.MarketSegmentField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCallPrice gets CallPrice, Tag 20266.
|
|
func (m ExecutionReport) GetCallPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.CallPriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTotNoOfMessages gets TotNoOfMessages, Tag 20394.
|
|
func (m ExecutionReport) GetTotNoOfMessages() (v int, err quickfix.MessageRejectError) {
|
|
var f field.TotNoOfMessagesField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMessageNo gets MessageNo, Tag 20395.
|
|
func (m ExecutionReport) GetMessageNo() (v int, err quickfix.MessageRejectError) {
|
|
var f field.MessageNoField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoHedge gets NoHedge, Tag 20630.
|
|
func (m ExecutionReport) GetNoHedge() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.NoHedgeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetBenchmarkYield gets BenchmarkYield, Tag 22570.
|
|
func (m ExecutionReport) GetBenchmarkYield() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.BenchmarkYieldField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetUseDealerBenchmark gets UseDealerBenchmark, Tag 22576.
|
|
func (m ExecutionReport) GetUseDealerBenchmark() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.UseDealerBenchmarkField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetFxRate gets FxRate, Tag 22630.
|
|
func (m ExecutionReport) GetFxRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.FxRateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetConfCoriBook gets ConfCoriBook, Tag 22631.
|
|
func (m ExecutionReport) GetConfCoriBook() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ConfCoriBookField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetConfTrsyBook gets ConfTrsyBook, Tag 22632.
|
|
func (m ExecutionReport) GetConfTrsyBook() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ConfTrsyBookField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOtherTrdRefID gets OtherTrdRefID, Tag 22634.
|
|
func (m ExecutionReport) GetOtherTrdRefID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.OtherTrdRefIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTradeSummary gets TradeSummary, Tag 22636.
|
|
func (m ExecutionReport) GetTradeSummary() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.TradeSummaryField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDealerInternalNote gets DealerInternalNote, Tag 22637.
|
|
func (m ExecutionReport) GetDealerInternalNote() (v string, err quickfix.MessageRejectError) {
|
|
var f field.DealerInternalNoteField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetHedgeIsPartOfNetHedge gets HedgeIsPartOfNetHedge, Tag 22638.
|
|
func (m ExecutionReport) GetHedgeIsPartOfNetHedge() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.HedgeIsPartOfNetHedgeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNegotiationTime gets NegotiationTime, Tag 22639.
|
|
func (m ExecutionReport) GetNegotiationTime() (v string, err quickfix.MessageRejectError) {
|
|
var f field.NegotiationTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDealerInternalNote2 gets DealerInternalNote2, Tag 22640.
|
|
func (m ExecutionReport) GetDealerInternalNote2() (v string, err quickfix.MessageRejectError) {
|
|
var f field.DealerInternalNote2Field
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetIntermediatedTradeType gets IntermediatedTradeType, Tag 22649.
|
|
func (m ExecutionReport) GetIntermediatedTradeType() (v string, err quickfix.MessageRejectError) {
|
|
var f field.IntermediatedTradeTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLinkedTrdRefID gets LinkedTrdRefID, Tag 22650.
|
|
func (m ExecutionReport) GetLinkedTrdRefID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.LinkedTrdRefIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetClientTradingCapacity gets ClientTradingCapacity, Tag 23060.
|
|
func (m ExecutionReport) GetClientTradingCapacity() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ClientTradingCapacityField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDealerTradingCapacity gets DealerTradingCapacity, Tag 23061.
|
|
func (m ExecutionReport) GetDealerTradingCapacity() (v string, err quickfix.MessageRejectError) {
|
|
var f field.DealerTradingCapacityField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetShortSellingIndicator gets ShortSellingIndicator, Tag 23066.
|
|
func (m ExecutionReport) GetShortSellingIndicator() (v int, err quickfix.MessageRejectError) {
|
|
var f field.ShortSellingIndicatorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMiFIDMIC gets MiFIDMIC, Tag 23068.
|
|
func (m ExecutionReport) GetMiFIDMIC() (v string, err quickfix.MessageRejectError) {
|
|
var f field.MiFIDMICField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOnMTF gets OnMTF, Tag 23070.
|
|
func (m ExecutionReport) GetOnMTF() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.OnMTFField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPortfolioTrade gets PortfolioTrade, Tag 23079.
|
|
func (m ExecutionReport) GetPortfolioTrade() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.PortfolioTradeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetComplexTradeID gets ComplexTradeID, Tag 23096.
|
|
func (m ExecutionReport) GetComplexTradeID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ComplexTradeIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPriceSrcVal gets PriceSrcVal, Tag 23097.
|
|
func (m ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) 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 ExecutionReport) GetPriceSrcOffType() (v int, err quickfix.MessageRejectError) {
|
|
var f field.PriceSrcOffTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCoopStatus gets CoopStatus, Tag 23670.
|
|
func (m ExecutionReport) GetCoopStatus() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CoopStatusField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetImpliedCoverProceeds gets ImpliedCoverProceeds, Tag 23671.
|
|
func (m ExecutionReport) GetImpliedCoverProceeds() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ImpliedCoverProceedsField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasAccount returns true if Account is present, Tag 1.
|
|
func (m ExecutionReport) HasAccount() bool {
|
|
return m.Has(tag.Account)
|
|
}
|
|
|
|
// HasAvgPx returns true if AvgPx is present, Tag 6.
|
|
func (m ExecutionReport) HasAvgPx() bool {
|
|
return m.Has(tag.AvgPx)
|
|
}
|
|
|
|
// HasClOrdID returns true if ClOrdID is present, Tag 11.
|
|
func (m ExecutionReport) HasClOrdID() bool {
|
|
return m.Has(tag.ClOrdID)
|
|
}
|
|
|
|
// HasCommission returns true if Commission is present, Tag 12.
|
|
func (m ExecutionReport) HasCommission() bool {
|
|
return m.Has(tag.Commission)
|
|
}
|
|
|
|
// HasCommType returns true if CommType is present, Tag 13.
|
|
func (m ExecutionReport) HasCommType() bool {
|
|
return m.Has(tag.CommType)
|
|
}
|
|
|
|
// HasCumQty returns true if CumQty is present, Tag 14.
|
|
func (m ExecutionReport) HasCumQty() bool {
|
|
return m.Has(tag.CumQty)
|
|
}
|
|
|
|
// HasCurrency returns true if Currency is present, Tag 15.
|
|
func (m ExecutionReport) HasCurrency() bool {
|
|
return m.Has(tag.Currency)
|
|
}
|
|
|
|
// HasExecID returns true if ExecID is present, Tag 17.
|
|
func (m ExecutionReport) HasExecID() bool {
|
|
return m.Has(tag.ExecID)
|
|
}
|
|
|
|
// HasExecInst returns true if ExecInst is present, Tag 18.
|
|
func (m ExecutionReport) HasExecInst() bool {
|
|
return m.Has(tag.ExecInst)
|
|
}
|
|
|
|
// HasExecRefID returns true if ExecRefID is present, Tag 19.
|
|
func (m ExecutionReport) HasExecRefID() bool {
|
|
return m.Has(tag.ExecRefID)
|
|
}
|
|
|
|
// HasHandlInst returns true if HandlInst is present, Tag 21.
|
|
func (m ExecutionReport) HasHandlInst() bool {
|
|
return m.Has(tag.HandlInst)
|
|
}
|
|
|
|
// HasSecurityIDSource returns true if SecurityIDSource is present, Tag 22.
|
|
func (m ExecutionReport) HasSecurityIDSource() bool {
|
|
return m.Has(tag.SecurityIDSource)
|
|
}
|
|
|
|
// HasLastCapacity returns true if LastCapacity is present, Tag 29.
|
|
func (m ExecutionReport) HasLastCapacity() bool {
|
|
return m.Has(tag.LastCapacity)
|
|
}
|
|
|
|
// HasLastMkt returns true if LastMkt is present, Tag 30.
|
|
func (m ExecutionReport) HasLastMkt() bool {
|
|
return m.Has(tag.LastMkt)
|
|
}
|
|
|
|
// HasLastPx returns true if LastPx is present, Tag 31.
|
|
func (m ExecutionReport) HasLastPx() bool {
|
|
return m.Has(tag.LastPx)
|
|
}
|
|
|
|
// HasLastQty returns true if LastQty is present, Tag 32.
|
|
func (m ExecutionReport) HasLastQty() bool {
|
|
return m.Has(tag.LastQty)
|
|
}
|
|
|
|
// HasOrderID returns true if OrderID is present, Tag 37.
|
|
func (m ExecutionReport) HasOrderID() bool {
|
|
return m.Has(tag.OrderID)
|
|
}
|
|
|
|
// HasOrderQty returns true if OrderQty is present, Tag 38.
|
|
func (m ExecutionReport) HasOrderQty() bool {
|
|
return m.Has(tag.OrderQty)
|
|
}
|
|
|
|
// HasOrdStatus returns true if OrdStatus is present, Tag 39.
|
|
func (m ExecutionReport) HasOrdStatus() bool {
|
|
return m.Has(tag.OrdStatus)
|
|
}
|
|
|
|
// HasOrdType returns true if OrdType is present, Tag 40.
|
|
func (m ExecutionReport) HasOrdType() bool {
|
|
return m.Has(tag.OrdType)
|
|
}
|
|
|
|
// HasOrigClOrdID returns true if OrigClOrdID is present, Tag 41.
|
|
func (m ExecutionReport) HasOrigClOrdID() bool {
|
|
return m.Has(tag.OrigClOrdID)
|
|
}
|
|
|
|
// HasPrice returns true if Price is present, Tag 44.
|
|
func (m ExecutionReport) HasPrice() bool {
|
|
return m.Has(tag.Price)
|
|
}
|
|
|
|
// HasSecurityID returns true if SecurityID is present, Tag 48.
|
|
func (m ExecutionReport) HasSecurityID() bool {
|
|
return m.Has(tag.SecurityID)
|
|
}
|
|
|
|
// HasSide returns true if Side is present, Tag 54.
|
|
func (m ExecutionReport) HasSide() bool {
|
|
return m.Has(tag.Side)
|
|
}
|
|
|
|
// HasSymbol returns true if Symbol is present, Tag 55.
|
|
func (m ExecutionReport) HasSymbol() bool {
|
|
return m.Has(tag.Symbol)
|
|
}
|
|
|
|
// HasText returns true if Text is present, Tag 58.
|
|
func (m ExecutionReport) HasText() bool {
|
|
return m.Has(tag.Text)
|
|
}
|
|
|
|
// HasTimeInForce returns true if TimeInForce is present, Tag 59.
|
|
func (m ExecutionReport) HasTimeInForce() bool {
|
|
return m.Has(tag.TimeInForce)
|
|
}
|
|
|
|
// HasTransactTime returns true if TransactTime is present, Tag 60.
|
|
func (m ExecutionReport) HasTransactTime() bool {
|
|
return m.Has(tag.TransactTime)
|
|
}
|
|
|
|
// HasSettlType returns true if SettlType is present, Tag 63.
|
|
func (m ExecutionReport) HasSettlType() bool {
|
|
return m.Has(tag.SettlType)
|
|
}
|
|
|
|
// HasSettlDate returns true if SettlDate is present, Tag 64.
|
|
func (m ExecutionReport) HasSettlDate() bool {
|
|
return m.Has(tag.SettlDate)
|
|
}
|
|
|
|
// HasSymbolSfx returns true if SymbolSfx is present, Tag 65.
|
|
func (m ExecutionReport) HasSymbolSfx() bool {
|
|
return m.Has(tag.SymbolSfx)
|
|
}
|
|
|
|
// HasListID returns true if ListID is present, Tag 66.
|
|
func (m ExecutionReport) HasListID() bool {
|
|
return m.Has(tag.ListID)
|
|
}
|
|
|
|
// HasTradeDate returns true if TradeDate is present, Tag 75.
|
|
func (m ExecutionReport) HasTradeDate() bool {
|
|
return m.Has(tag.TradeDate)
|
|
}
|
|
|
|
// HasPositionEffect returns true if PositionEffect is present, Tag 77.
|
|
func (m ExecutionReport) HasPositionEffect() bool {
|
|
return m.Has(tag.PositionEffect)
|
|
}
|
|
|
|
// HasStopPx returns true if StopPx is present, Tag 99.
|
|
func (m ExecutionReport) HasStopPx() bool {
|
|
return m.Has(tag.StopPx)
|
|
}
|
|
|
|
// HasOrdRejReason returns true if OrdRejReason is present, Tag 103.
|
|
func (m ExecutionReport) HasOrdRejReason() bool {
|
|
return m.Has(tag.OrdRejReason)
|
|
}
|
|
|
|
// HasIssuer returns true if Issuer is present, Tag 106.
|
|
func (m ExecutionReport) HasIssuer() bool {
|
|
return m.Has(tag.Issuer)
|
|
}
|
|
|
|
// HasSecurityDesc returns true if SecurityDesc is present, Tag 107.
|
|
func (m ExecutionReport) HasSecurityDesc() bool {
|
|
return m.Has(tag.SecurityDesc)
|
|
}
|
|
|
|
// HasMinQty returns true if MinQty is present, Tag 110.
|
|
func (m ExecutionReport) HasMinQty() bool {
|
|
return m.Has(tag.MinQty)
|
|
}
|
|
|
|
// HasMaxFloor returns true if MaxFloor is present, Tag 111.
|
|
func (m ExecutionReport) HasMaxFloor() bool {
|
|
return m.Has(tag.MaxFloor)
|
|
}
|
|
|
|
// HasReportToExch returns true if ReportToExch is present, Tag 113.
|
|
func (m ExecutionReport) HasReportToExch() bool {
|
|
return m.Has(tag.ReportToExch)
|
|
}
|
|
|
|
// HasNetMoney returns true if NetMoney is present, Tag 118.
|
|
func (m ExecutionReport) HasNetMoney() bool {
|
|
return m.Has(tag.NetMoney)
|
|
}
|
|
|
|
// HasSettlCurrAmt returns true if SettlCurrAmt is present, Tag 119.
|
|
func (m ExecutionReport) HasSettlCurrAmt() bool {
|
|
return m.Has(tag.SettlCurrAmt)
|
|
}
|
|
|
|
// HasSettlCurrency returns true if SettlCurrency is present, Tag 120.
|
|
func (m ExecutionReport) HasSettlCurrency() bool {
|
|
return m.Has(tag.SettlCurrency)
|
|
}
|
|
|
|
// HasExpireTime returns true if ExpireTime is present, Tag 126.
|
|
func (m ExecutionReport) HasExpireTime() bool {
|
|
return m.Has(tag.ExpireTime)
|
|
}
|
|
|
|
// HasBidPx returns true if BidPx is present, Tag 132.
|
|
func (m ExecutionReport) HasBidPx() bool {
|
|
return m.Has(tag.BidPx)
|
|
}
|
|
|
|
// HasOfferPx returns true if OfferPx is present, Tag 133.
|
|
func (m ExecutionReport) HasOfferPx() bool {
|
|
return m.Has(tag.OfferPx)
|
|
}
|
|
|
|
// HasBidSize returns true if BidSize is present, Tag 134.
|
|
func (m ExecutionReport) HasBidSize() bool {
|
|
return m.Has(tag.BidSize)
|
|
}
|
|
|
|
// HasOfferSize returns true if OfferSize is present, Tag 135.
|
|
func (m ExecutionReport) HasOfferSize() bool {
|
|
return m.Has(tag.OfferSize)
|
|
}
|
|
|
|
// HasNoMiscFees returns true if NoMiscFees is present, Tag 136.
|
|
func (m ExecutionReport) HasNoMiscFees() bool {
|
|
return m.Has(tag.NoMiscFees)
|
|
}
|
|
|
|
// HasExecType returns true if ExecType is present, Tag 150.
|
|
func (m ExecutionReport) HasExecType() bool {
|
|
return m.Has(tag.ExecType)
|
|
}
|
|
|
|
// HasLeavesQty returns true if LeavesQty is present, Tag 151.
|
|
func (m ExecutionReport) HasLeavesQty() bool {
|
|
return m.Has(tag.LeavesQty)
|
|
}
|
|
|
|
// HasCashOrderQty returns true if CashOrderQty is present, Tag 152.
|
|
func (m ExecutionReport) HasCashOrderQty() bool {
|
|
return m.Has(tag.CashOrderQty)
|
|
}
|
|
|
|
// HasSettlCurrFxRate returns true if SettlCurrFxRate is present, Tag 155.
|
|
func (m ExecutionReport) HasSettlCurrFxRate() bool {
|
|
return m.Has(tag.SettlCurrFxRate)
|
|
}
|
|
|
|
// HasSettlCurrFxRateCalc returns true if SettlCurrFxRateCalc is present, Tag 156.
|
|
func (m ExecutionReport) HasSettlCurrFxRateCalc() bool {
|
|
return m.Has(tag.SettlCurrFxRateCalc)
|
|
}
|
|
|
|
// HasNumDaysInterest returns true if NumDaysInterest is present, Tag 157.
|
|
func (m ExecutionReport) HasNumDaysInterest() bool {
|
|
return m.Has(tag.NumDaysInterest)
|
|
}
|
|
|
|
// HasAccruedInterestRate returns true if AccruedInterestRate is present, Tag 158.
|
|
func (m ExecutionReport) HasAccruedInterestRate() bool {
|
|
return m.Has(tag.AccruedInterestRate)
|
|
}
|
|
|
|
// HasAccruedInterestAmt returns true if AccruedInterestAmt is present, Tag 159.
|
|
func (m ExecutionReport) HasAccruedInterestAmt() bool {
|
|
return m.Has(tag.AccruedInterestAmt)
|
|
}
|
|
|
|
// HasSecurityType returns true if SecurityType is present, Tag 167.
|
|
func (m ExecutionReport) HasSecurityType() bool {
|
|
return m.Has(tag.SecurityType)
|
|
}
|
|
|
|
// HasEffectiveTime returns true if EffectiveTime is present, Tag 168.
|
|
func (m ExecutionReport) HasEffectiveTime() bool {
|
|
return m.Has(tag.EffectiveTime)
|
|
}
|
|
|
|
// HasOrderQty2 returns true if OrderQty2 is present, Tag 192.
|
|
func (m ExecutionReport) HasOrderQty2() bool {
|
|
return m.Has(tag.OrderQty2)
|
|
}
|
|
|
|
// HasSettlDate2 returns true if SettlDate2 is present, Tag 193.
|
|
func (m ExecutionReport) HasSettlDate2() bool {
|
|
return m.Has(tag.SettlDate2)
|
|
}
|
|
|
|
// HasLastSpotRate returns true if LastSpotRate is present, Tag 194.
|
|
func (m ExecutionReport) HasLastSpotRate() bool {
|
|
return m.Has(tag.LastSpotRate)
|
|
}
|
|
|
|
// HasLastForwardPoints returns true if LastForwardPoints is present, Tag 195.
|
|
func (m ExecutionReport) HasLastForwardPoints() bool {
|
|
return m.Has(tag.LastForwardPoints)
|
|
}
|
|
|
|
// HasSecondaryOrderID returns true if SecondaryOrderID is present, Tag 198.
|
|
func (m ExecutionReport) HasSecondaryOrderID() bool {
|
|
return m.Has(tag.SecondaryOrderID)
|
|
}
|
|
|
|
// HasMaturityMonthYear returns true if MaturityMonthYear is present, Tag 200.
|
|
func (m ExecutionReport) HasMaturityMonthYear() bool {
|
|
return m.Has(tag.MaturityMonthYear)
|
|
}
|
|
|
|
// HasStrikePrice returns true if StrikePrice is present, Tag 202.
|
|
func (m ExecutionReport) HasStrikePrice() bool {
|
|
return m.Has(tag.StrikePrice)
|
|
}
|
|
|
|
// HasOptAttribute returns true if OptAttribute is present, Tag 206.
|
|
func (m ExecutionReport) HasOptAttribute() bool {
|
|
return m.Has(tag.OptAttribute)
|
|
}
|
|
|
|
// HasSecurityExchange returns true if SecurityExchange is present, Tag 207.
|
|
func (m ExecutionReport) HasSecurityExchange() bool {
|
|
return m.Has(tag.SecurityExchange)
|
|
}
|
|
|
|
// HasMaxShow returns true if MaxShow is present, Tag 210.
|
|
func (m ExecutionReport) HasMaxShow() bool {
|
|
return m.Has(tag.MaxShow)
|
|
}
|
|
|
|
// HasPegOffsetValue returns true if PegOffsetValue is present, Tag 211.
|
|
func (m ExecutionReport) HasPegOffsetValue() bool {
|
|
return m.Has(tag.PegOffsetValue)
|
|
}
|
|
|
|
// HasSpread returns true if Spread is present, Tag 218.
|
|
func (m ExecutionReport) HasSpread() bool {
|
|
return m.Has(tag.Spread)
|
|
}
|
|
|
|
// HasBenchmarkCurveCurrency returns true if BenchmarkCurveCurrency is present, Tag 220.
|
|
func (m ExecutionReport) HasBenchmarkCurveCurrency() bool {
|
|
return m.Has(tag.BenchmarkCurveCurrency)
|
|
}
|
|
|
|
// HasBenchmarkCurveName returns true if BenchmarkCurveName is present, Tag 221.
|
|
func (m ExecutionReport) HasBenchmarkCurveName() bool {
|
|
return m.Has(tag.BenchmarkCurveName)
|
|
}
|
|
|
|
// HasBenchmarkCurvePoint returns true if BenchmarkCurvePoint is present, Tag 222.
|
|
func (m ExecutionReport) HasBenchmarkCurvePoint() bool {
|
|
return m.Has(tag.BenchmarkCurvePoint)
|
|
}
|
|
|
|
// HasCouponRate returns true if CouponRate is present, Tag 223.
|
|
func (m ExecutionReport) HasCouponRate() bool {
|
|
return m.Has(tag.CouponRate)
|
|
}
|
|
|
|
// HasCouponPaymentDate returns true if CouponPaymentDate is present, Tag 224.
|
|
func (m ExecutionReport) HasCouponPaymentDate() bool {
|
|
return m.Has(tag.CouponPaymentDate)
|
|
}
|
|
|
|
// HasIssueDate returns true if IssueDate is present, Tag 225.
|
|
func (m ExecutionReport) HasIssueDate() bool {
|
|
return m.Has(tag.IssueDate)
|
|
}
|
|
|
|
// HasRepurchaseTerm returns true if RepurchaseTerm is present, Tag 226.
|
|
func (m ExecutionReport) HasRepurchaseTerm() bool {
|
|
return m.Has(tag.RepurchaseTerm)
|
|
}
|
|
|
|
// HasRepurchaseRate returns true if RepurchaseRate is present, Tag 227.
|
|
func (m ExecutionReport) HasRepurchaseRate() bool {
|
|
return m.Has(tag.RepurchaseRate)
|
|
}
|
|
|
|
// HasFactor returns true if Factor is present, Tag 228.
|
|
func (m ExecutionReport) HasFactor() bool {
|
|
return m.Has(tag.Factor)
|
|
}
|
|
|
|
// HasTradeOriginationDate returns true if TradeOriginationDate is present, Tag 229.
|
|
func (m ExecutionReport) HasTradeOriginationDate() bool {
|
|
return m.Has(tag.TradeOriginationDate)
|
|
}
|
|
|
|
// HasExDate returns true if ExDate is present, Tag 230.
|
|
func (m ExecutionReport) HasExDate() bool {
|
|
return m.Has(tag.ExDate)
|
|
}
|
|
|
|
// HasContractMultiplier returns true if ContractMultiplier is present, Tag 231.
|
|
func (m ExecutionReport) HasContractMultiplier() bool {
|
|
return m.Has(tag.ContractMultiplier)
|
|
}
|
|
|
|
// HasNoStipulations returns true if NoStipulations is present, Tag 232.
|
|
func (m ExecutionReport) HasNoStipulations() bool {
|
|
return m.Has(tag.NoStipulations)
|
|
}
|
|
|
|
// HasYieldType returns true if YieldType is present, Tag 235.
|
|
func (m ExecutionReport) HasYieldType() bool {
|
|
return m.Has(tag.YieldType)
|
|
}
|
|
|
|
// HasYield returns true if Yield is present, Tag 236.
|
|
func (m ExecutionReport) HasYield() bool {
|
|
return m.Has(tag.Yield)
|
|
}
|
|
|
|
// HasTotalTakedown returns true if TotalTakedown is present, Tag 237.
|
|
func (m ExecutionReport) HasTotalTakedown() bool {
|
|
return m.Has(tag.TotalTakedown)
|
|
}
|
|
|
|
// HasConcession returns true if Concession is present, Tag 238.
|
|
func (m ExecutionReport) HasConcession() bool {
|
|
return m.Has(tag.Concession)
|
|
}
|
|
|
|
// HasRepoCollateralSecurityType returns true if RepoCollateralSecurityType is present, Tag 239.
|
|
func (m ExecutionReport) HasRepoCollateralSecurityType() bool {
|
|
return m.Has(tag.RepoCollateralSecurityType)
|
|
}
|
|
|
|
// HasRedemptionDate returns true if RedemptionDate is present, Tag 240.
|
|
func (m ExecutionReport) HasRedemptionDate() bool {
|
|
return m.Has(tag.RedemptionDate)
|
|
}
|
|
|
|
// HasCreditRating returns true if CreditRating is present, Tag 255.
|
|
func (m ExecutionReport) HasCreditRating() bool {
|
|
return m.Has(tag.CreditRating)
|
|
}
|
|
|
|
// HasTradedFlatSwitch returns true if TradedFlatSwitch is present, Tag 258.
|
|
func (m ExecutionReport) HasTradedFlatSwitch() bool {
|
|
return m.Has(tag.TradedFlatSwitch)
|
|
}
|
|
|
|
// HasBasisFeatureDate returns true if BasisFeatureDate is present, Tag 259.
|
|
func (m ExecutionReport) HasBasisFeatureDate() bool {
|
|
return m.Has(tag.BasisFeatureDate)
|
|
}
|
|
|
|
// HasBasisFeaturePrice returns true if BasisFeaturePrice is present, Tag 260.
|
|
func (m ExecutionReport) HasBasisFeaturePrice() bool {
|
|
return m.Has(tag.BasisFeaturePrice)
|
|
}
|
|
|
|
// HasTradingSessionID returns true if TradingSessionID is present, Tag 336.
|
|
func (m ExecutionReport) HasTradingSessionID() bool {
|
|
return m.Has(tag.TradingSessionID)
|
|
}
|
|
|
|
// HasEncodedIssuerLen returns true if EncodedIssuerLen is present, Tag 348.
|
|
func (m ExecutionReport) HasEncodedIssuerLen() bool {
|
|
return m.Has(tag.EncodedIssuerLen)
|
|
}
|
|
|
|
// HasEncodedIssuer returns true if EncodedIssuer is present, Tag 349.
|
|
func (m ExecutionReport) HasEncodedIssuer() bool {
|
|
return m.Has(tag.EncodedIssuer)
|
|
}
|
|
|
|
// HasEncodedSecurityDescLen returns true if EncodedSecurityDescLen is present, Tag 350.
|
|
func (m ExecutionReport) HasEncodedSecurityDescLen() bool {
|
|
return m.Has(tag.EncodedSecurityDescLen)
|
|
}
|
|
|
|
// HasEncodedSecurityDesc returns true if EncodedSecurityDesc is present, Tag 351.
|
|
func (m ExecutionReport) HasEncodedSecurityDesc() bool {
|
|
return m.Has(tag.EncodedSecurityDesc)
|
|
}
|
|
|
|
// HasEncodedTextLen returns true if EncodedTextLen is present, Tag 354.
|
|
func (m ExecutionReport) HasEncodedTextLen() bool {
|
|
return m.Has(tag.EncodedTextLen)
|
|
}
|
|
|
|
// HasEncodedText returns true if EncodedText is present, Tag 355.
|
|
func (m ExecutionReport) HasEncodedText() bool {
|
|
return m.Has(tag.EncodedText)
|
|
}
|
|
|
|
// HasComplianceID returns true if ComplianceID is present, Tag 376.
|
|
func (m ExecutionReport) HasComplianceID() bool {
|
|
return m.Has(tag.ComplianceID)
|
|
}
|
|
|
|
// HasSolicitedFlag returns true if SolicitedFlag is present, Tag 377.
|
|
func (m ExecutionReport) HasSolicitedFlag() bool {
|
|
return m.Has(tag.SolicitedFlag)
|
|
}
|
|
|
|
// HasExecRestatementReason returns true if ExecRestatementReason is present, Tag 378.
|
|
func (m ExecutionReport) HasExecRestatementReason() bool {
|
|
return m.Has(tag.ExecRestatementReason)
|
|
}
|
|
|
|
// HasGrossTradeAmt returns true if GrossTradeAmt is present, Tag 381.
|
|
func (m ExecutionReport) HasGrossTradeAmt() bool {
|
|
return m.Has(tag.GrossTradeAmt)
|
|
}
|
|
|
|
// HasNoContraBrokers returns true if NoContraBrokers is present, Tag 382.
|
|
func (m ExecutionReport) HasNoContraBrokers() bool {
|
|
return m.Has(tag.NoContraBrokers)
|
|
}
|
|
|
|
// HasDiscretionInst returns true if DiscretionInst is present, Tag 388.
|
|
func (m ExecutionReport) HasDiscretionInst() bool {
|
|
return m.Has(tag.DiscretionInst)
|
|
}
|
|
|
|
// HasDiscretionOffsetValue returns true if DiscretionOffsetValue is present, Tag 389.
|
|
func (m ExecutionReport) HasDiscretionOffsetValue() bool {
|
|
return m.Has(tag.DiscretionOffsetValue)
|
|
}
|
|
|
|
// HasPriceType returns true if PriceType is present, Tag 423.
|
|
func (m ExecutionReport) HasPriceType() bool {
|
|
return m.Has(tag.PriceType)
|
|
}
|
|
|
|
// HasDayOrderQty returns true if DayOrderQty is present, Tag 424.
|
|
func (m ExecutionReport) HasDayOrderQty() bool {
|
|
return m.Has(tag.DayOrderQty)
|
|
}
|
|
|
|
// HasDayCumQty returns true if DayCumQty is present, Tag 425.
|
|
func (m ExecutionReport) HasDayCumQty() bool {
|
|
return m.Has(tag.DayCumQty)
|
|
}
|
|
|
|
// HasDayAvgPx returns true if DayAvgPx is present, Tag 426.
|
|
func (m ExecutionReport) HasDayAvgPx() bool {
|
|
return m.Has(tag.DayAvgPx)
|
|
}
|
|
|
|
// HasGTBookingInst returns true if GTBookingInst is present, Tag 427.
|
|
func (m ExecutionReport) HasGTBookingInst() bool {
|
|
return m.Has(tag.GTBookingInst)
|
|
}
|
|
|
|
// HasExpireDate returns true if ExpireDate is present, Tag 432.
|
|
func (m ExecutionReport) HasExpireDate() bool {
|
|
return m.Has(tag.ExpireDate)
|
|
}
|
|
|
|
// HasMultiLegReportingType returns true if MultiLegReportingType is present, Tag 442.
|
|
func (m ExecutionReport) HasMultiLegReportingType() bool {
|
|
return m.Has(tag.MultiLegReportingType)
|
|
}
|
|
|
|
// HasNoPartyIDs returns true if NoPartyIDs is present, Tag 453.
|
|
func (m ExecutionReport) HasNoPartyIDs() bool {
|
|
return m.Has(tag.NoPartyIDs)
|
|
}
|
|
|
|
// HasNoSecurityAltID returns true if NoSecurityAltID is present, Tag 454.
|
|
func (m ExecutionReport) HasNoSecurityAltID() bool {
|
|
return m.Has(tag.NoSecurityAltID)
|
|
}
|
|
|
|
// HasProduct returns true if Product is present, Tag 460.
|
|
func (m ExecutionReport) HasProduct() bool {
|
|
return m.Has(tag.Product)
|
|
}
|
|
|
|
// HasCFICode returns true if CFICode is present, Tag 461.
|
|
func (m ExecutionReport) HasCFICode() bool {
|
|
return m.Has(tag.CFICode)
|
|
}
|
|
|
|
// HasTestMessageIndicator returns true if TestMessageIndicator is present, Tag 464.
|
|
func (m ExecutionReport) HasTestMessageIndicator() bool {
|
|
return m.Has(tag.TestMessageIndicator)
|
|
}
|
|
|
|
// HasRoundingDirection returns true if RoundingDirection is present, Tag 468.
|
|
func (m ExecutionReport) HasRoundingDirection() bool {
|
|
return m.Has(tag.RoundingDirection)
|
|
}
|
|
|
|
// HasRoundingModulus returns true if RoundingModulus is present, Tag 469.
|
|
func (m ExecutionReport) HasRoundingModulus() bool {
|
|
return m.Has(tag.RoundingModulus)
|
|
}
|
|
|
|
// HasCountryOfIssue returns true if CountryOfIssue is present, Tag 470.
|
|
func (m ExecutionReport) HasCountryOfIssue() bool {
|
|
return m.Has(tag.CountryOfIssue)
|
|
}
|
|
|
|
// HasStateOrProvinceOfIssue returns true if StateOrProvinceOfIssue is present, Tag 471.
|
|
func (m ExecutionReport) HasStateOrProvinceOfIssue() bool {
|
|
return m.Has(tag.StateOrProvinceOfIssue)
|
|
}
|
|
|
|
// HasLocaleOfIssue returns true if LocaleOfIssue is present, Tag 472.
|
|
func (m ExecutionReport) HasLocaleOfIssue() bool {
|
|
return m.Has(tag.LocaleOfIssue)
|
|
}
|
|
|
|
// HasCommCurrency returns true if CommCurrency is present, Tag 479.
|
|
func (m ExecutionReport) HasCommCurrency() bool {
|
|
return m.Has(tag.CommCurrency)
|
|
}
|
|
|
|
// HasCancellationRights returns true if CancellationRights is present, Tag 480.
|
|
func (m ExecutionReport) HasCancellationRights() bool {
|
|
return m.Has(tag.CancellationRights)
|
|
}
|
|
|
|
// HasMoneyLaunderingStatus returns true if MoneyLaunderingStatus is present, Tag 481.
|
|
func (m ExecutionReport) HasMoneyLaunderingStatus() bool {
|
|
return m.Has(tag.MoneyLaunderingStatus)
|
|
}
|
|
|
|
// HasTransBkdTime returns true if TransBkdTime is present, Tag 483.
|
|
func (m ExecutionReport) HasTransBkdTime() bool {
|
|
return m.Has(tag.TransBkdTime)
|
|
}
|
|
|
|
// HasExecPriceType returns true if ExecPriceType is present, Tag 484.
|
|
func (m ExecutionReport) HasExecPriceType() bool {
|
|
return m.Has(tag.ExecPriceType)
|
|
}
|
|
|
|
// HasExecPriceAdjustment returns true if ExecPriceAdjustment is present, Tag 485.
|
|
func (m ExecutionReport) HasExecPriceAdjustment() bool {
|
|
return m.Has(tag.ExecPriceAdjustment)
|
|
}
|
|
|
|
// HasDesignation returns true if Designation is present, Tag 494.
|
|
func (m ExecutionReport) HasDesignation() bool {
|
|
return m.Has(tag.Designation)
|
|
}
|
|
|
|
// HasFundRenewWaiv returns true if FundRenewWaiv is present, Tag 497.
|
|
func (m ExecutionReport) HasFundRenewWaiv() bool {
|
|
return m.Has(tag.FundRenewWaiv)
|
|
}
|
|
|
|
// HasRegistID returns true if RegistID is present, Tag 513.
|
|
func (m ExecutionReport) HasRegistID() bool {
|
|
return m.Has(tag.RegistID)
|
|
}
|
|
|
|
// HasExecValuationPoint returns true if ExecValuationPoint is present, Tag 515.
|
|
func (m ExecutionReport) HasExecValuationPoint() bool {
|
|
return m.Has(tag.ExecValuationPoint)
|
|
}
|
|
|
|
// HasOrderPercent returns true if OrderPercent is present, Tag 516.
|
|
func (m ExecutionReport) HasOrderPercent() bool {
|
|
return m.Has(tag.OrderPercent)
|
|
}
|
|
|
|
// HasNoContAmts returns true if NoContAmts is present, Tag 518.
|
|
func (m ExecutionReport) HasNoContAmts() bool {
|
|
return m.Has(tag.NoContAmts)
|
|
}
|
|
|
|
// HasSecondaryClOrdID returns true if SecondaryClOrdID is present, Tag 526.
|
|
func (m ExecutionReport) HasSecondaryClOrdID() bool {
|
|
return m.Has(tag.SecondaryClOrdID)
|
|
}
|
|
|
|
// HasSecondaryExecID returns true if SecondaryExecID is present, Tag 527.
|
|
func (m ExecutionReport) HasSecondaryExecID() bool {
|
|
return m.Has(tag.SecondaryExecID)
|
|
}
|
|
|
|
// HasOrderCapacity returns true if OrderCapacity is present, Tag 528.
|
|
func (m ExecutionReport) HasOrderCapacity() bool {
|
|
return m.Has(tag.OrderCapacity)
|
|
}
|
|
|
|
// HasOrderRestrictions returns true if OrderRestrictions is present, Tag 529.
|
|
func (m ExecutionReport) HasOrderRestrictions() bool {
|
|
return m.Has(tag.OrderRestrictions)
|
|
}
|
|
|
|
// HasMaturityDate returns true if MaturityDate is present, Tag 541.
|
|
func (m ExecutionReport) HasMaturityDate() bool {
|
|
return m.Has(tag.MaturityDate)
|
|
}
|
|
|
|
// HasInstrRegistry returns true if InstrRegistry is present, Tag 543.
|
|
func (m ExecutionReport) HasInstrRegistry() bool {
|
|
return m.Has(tag.InstrRegistry)
|
|
}
|
|
|
|
// HasCashMargin returns true if CashMargin is present, Tag 544.
|
|
func (m ExecutionReport) HasCashMargin() bool {
|
|
return m.Has(tag.CashMargin)
|
|
}
|
|
|
|
// HasCrossID returns true if CrossID is present, Tag 548.
|
|
func (m ExecutionReport) HasCrossID() bool {
|
|
return m.Has(tag.CrossID)
|
|
}
|
|
|
|
// HasCrossType returns true if CrossType is present, Tag 549.
|
|
func (m ExecutionReport) HasCrossType() bool {
|
|
return m.Has(tag.CrossType)
|
|
}
|
|
|
|
// HasOrigCrossID returns true if OrigCrossID is present, Tag 551.
|
|
func (m ExecutionReport) HasOrigCrossID() bool {
|
|
return m.Has(tag.OrigCrossID)
|
|
}
|
|
|
|
// HasNoLegs returns true if NoLegs is present, Tag 555.
|
|
func (m ExecutionReport) HasNoLegs() bool {
|
|
return m.Has(tag.NoLegs)
|
|
}
|
|
|
|
// HasAccountType returns true if AccountType is present, Tag 581.
|
|
func (m ExecutionReport) HasAccountType() bool {
|
|
return m.Has(tag.AccountType)
|
|
}
|
|
|
|
// HasCustOrderCapacity returns true if CustOrderCapacity is present, Tag 582.
|
|
func (m ExecutionReport) HasCustOrderCapacity() bool {
|
|
return m.Has(tag.CustOrderCapacity)
|
|
}
|
|
|
|
// HasClOrdLinkID returns true if ClOrdLinkID is present, Tag 583.
|
|
func (m ExecutionReport) HasClOrdLinkID() bool {
|
|
return m.Has(tag.ClOrdLinkID)
|
|
}
|
|
|
|
// HasMassStatusReqID returns true if MassStatusReqID is present, Tag 584.
|
|
func (m ExecutionReport) HasMassStatusReqID() bool {
|
|
return m.Has(tag.MassStatusReqID)
|
|
}
|
|
|
|
// HasDayBookingInst returns true if DayBookingInst is present, Tag 589.
|
|
func (m ExecutionReport) HasDayBookingInst() bool {
|
|
return m.Has(tag.DayBookingInst)
|
|
}
|
|
|
|
// HasBookingUnit returns true if BookingUnit is present, Tag 590.
|
|
func (m ExecutionReport) HasBookingUnit() bool {
|
|
return m.Has(tag.BookingUnit)
|
|
}
|
|
|
|
// HasPreallocMethod returns true if PreallocMethod is present, Tag 591.
|
|
func (m ExecutionReport) HasPreallocMethod() bool {
|
|
return m.Has(tag.PreallocMethod)
|
|
}
|
|
|
|
// HasTradingSessionSubID returns true if TradingSessionSubID is present, Tag 625.
|
|
func (m ExecutionReport) HasTradingSessionSubID() bool {
|
|
return m.Has(tag.TradingSessionSubID)
|
|
}
|
|
|
|
// HasClearingFeeIndicator returns true if ClearingFeeIndicator is present, Tag 635.
|
|
func (m ExecutionReport) HasClearingFeeIndicator() bool {
|
|
return m.Has(tag.ClearingFeeIndicator)
|
|
}
|
|
|
|
// HasWorkingIndicator returns true if WorkingIndicator is present, Tag 636.
|
|
func (m ExecutionReport) HasWorkingIndicator() bool {
|
|
return m.Has(tag.WorkingIndicator)
|
|
}
|
|
|
|
// HasPriorityIndicator returns true if PriorityIndicator is present, Tag 638.
|
|
func (m ExecutionReport) HasPriorityIndicator() bool {
|
|
return m.Has(tag.PriorityIndicator)
|
|
}
|
|
|
|
// HasPriceImprovement returns true if PriceImprovement is present, Tag 639.
|
|
func (m ExecutionReport) HasPriceImprovement() bool {
|
|
return m.Has(tag.PriceImprovement)
|
|
}
|
|
|
|
// HasLastForwardPoints2 returns true if LastForwardPoints2 is present, Tag 641.
|
|
func (m ExecutionReport) HasLastForwardPoints2() bool {
|
|
return m.Has(tag.LastForwardPoints2)
|
|
}
|
|
|
|
// HasUnderlyingLastPx returns true if UnderlyingLastPx is present, Tag 651.
|
|
func (m ExecutionReport) HasUnderlyingLastPx() bool {
|
|
return m.Has(tag.UnderlyingLastPx)
|
|
}
|
|
|
|
// HasUnderlyingLastQty returns true if UnderlyingLastQty is present, Tag 652.
|
|
func (m ExecutionReport) HasUnderlyingLastQty() bool {
|
|
return m.Has(tag.UnderlyingLastQty)
|
|
}
|
|
|
|
// HasAcctIDSource returns true if AcctIDSource is present, Tag 660.
|
|
func (m ExecutionReport) HasAcctIDSource() bool {
|
|
return m.Has(tag.AcctIDSource)
|
|
}
|
|
|
|
// HasBenchmarkPrice returns true if BenchmarkPrice is present, Tag 662.
|
|
func (m ExecutionReport) HasBenchmarkPrice() bool {
|
|
return m.Has(tag.BenchmarkPrice)
|
|
}
|
|
|
|
// HasBenchmarkPriceType returns true if BenchmarkPriceType is present, Tag 663.
|
|
func (m ExecutionReport) HasBenchmarkPriceType() bool {
|
|
return m.Has(tag.BenchmarkPriceType)
|
|
}
|
|
|
|
// HasContractSettlMonth returns true if ContractSettlMonth is present, Tag 667.
|
|
func (m ExecutionReport) HasContractSettlMonth() bool {
|
|
return m.Has(tag.ContractSettlMonth)
|
|
}
|
|
|
|
// HasLastParPx returns true if LastParPx is present, Tag 669.
|
|
func (m ExecutionReport) HasLastParPx() bool {
|
|
return m.Has(tag.LastParPx)
|
|
}
|
|
|
|
// HasPool returns true if Pool is present, Tag 691.
|
|
func (m ExecutionReport) HasPool() bool {
|
|
return m.Has(tag.Pool)
|
|
}
|
|
|
|
// HasQuoteRespID returns true if QuoteRespID is present, Tag 693.
|
|
func (m ExecutionReport) HasQuoteRespID() bool {
|
|
return m.Has(tag.QuoteRespID)
|
|
}
|
|
|
|
// HasYieldRedemptionDate returns true if YieldRedemptionDate is present, Tag 696.
|
|
func (m ExecutionReport) HasYieldRedemptionDate() bool {
|
|
return m.Has(tag.YieldRedemptionDate)
|
|
}
|
|
|
|
// HasYieldRedemptionPrice returns true if YieldRedemptionPrice is present, Tag 697.
|
|
func (m ExecutionReport) HasYieldRedemptionPrice() bool {
|
|
return m.Has(tag.YieldRedemptionPrice)
|
|
}
|
|
|
|
// HasYieldRedemptionPriceType returns true if YieldRedemptionPriceType is present, Tag 698.
|
|
func (m ExecutionReport) HasYieldRedemptionPriceType() bool {
|
|
return m.Has(tag.YieldRedemptionPriceType)
|
|
}
|
|
|
|
// HasBenchmarkSecurityID returns true if BenchmarkSecurityID is present, Tag 699.
|
|
func (m ExecutionReport) HasBenchmarkSecurityID() bool {
|
|
return m.Has(tag.BenchmarkSecurityID)
|
|
}
|
|
|
|
// HasYieldCalcDate returns true if YieldCalcDate is present, Tag 701.
|
|
func (m ExecutionReport) HasYieldCalcDate() bool {
|
|
return m.Has(tag.YieldCalcDate)
|
|
}
|
|
|
|
// HasNoUnderlyings returns true if NoUnderlyings is present, Tag 711.
|
|
func (m ExecutionReport) HasNoUnderlyings() bool {
|
|
return m.Has(tag.NoUnderlyings)
|
|
}
|
|
|
|
// HasInterestAtMaturity returns true if InterestAtMaturity is present, Tag 738.
|
|
func (m ExecutionReport) HasInterestAtMaturity() bool {
|
|
return m.Has(tag.InterestAtMaturity)
|
|
}
|
|
|
|
// HasBenchmarkSecurityIDSource returns true if BenchmarkSecurityIDSource is present, Tag 761.
|
|
func (m ExecutionReport) HasBenchmarkSecurityIDSource() bool {
|
|
return m.Has(tag.BenchmarkSecurityIDSource)
|
|
}
|
|
|
|
// HasSecuritySubType returns true if SecuritySubType is present, Tag 762.
|
|
func (m ExecutionReport) HasSecuritySubType() bool {
|
|
return m.Has(tag.SecuritySubType)
|
|
}
|
|
|
|
// HasBookingType returns true if BookingType is present, Tag 775.
|
|
func (m ExecutionReport) HasBookingType() bool {
|
|
return m.Has(tag.BookingType)
|
|
}
|
|
|
|
// HasTerminationType returns true if TerminationType is present, Tag 788.
|
|
func (m ExecutionReport) HasTerminationType() bool {
|
|
return m.Has(tag.TerminationType)
|
|
}
|
|
|
|
// HasOrdStatusReqID returns true if OrdStatusReqID is present, Tag 790.
|
|
func (m ExecutionReport) HasOrdStatusReqID() bool {
|
|
return m.Has(tag.OrdStatusReqID)
|
|
}
|
|
|
|
// HasCopyMsgIndicator returns true if CopyMsgIndicator is present, Tag 797.
|
|
func (m ExecutionReport) HasCopyMsgIndicator() bool {
|
|
return m.Has(tag.CopyMsgIndicator)
|
|
}
|
|
|
|
// HasPegMoveType returns true if PegMoveType is present, Tag 835.
|
|
func (m ExecutionReport) HasPegMoveType() bool {
|
|
return m.Has(tag.PegMoveType)
|
|
}
|
|
|
|
// HasPegOffsetType returns true if PegOffsetType is present, Tag 836.
|
|
func (m ExecutionReport) HasPegOffsetType() bool {
|
|
return m.Has(tag.PegOffsetType)
|
|
}
|
|
|
|
// HasPegLimitType returns true if PegLimitType is present, Tag 837.
|
|
func (m ExecutionReport) HasPegLimitType() bool {
|
|
return m.Has(tag.PegLimitType)
|
|
}
|
|
|
|
// HasPegRoundDirection returns true if PegRoundDirection is present, Tag 838.
|
|
func (m ExecutionReport) HasPegRoundDirection() bool {
|
|
return m.Has(tag.PegRoundDirection)
|
|
}
|
|
|
|
// HasPeggedPrice returns true if PeggedPrice is present, Tag 839.
|
|
func (m ExecutionReport) HasPeggedPrice() bool {
|
|
return m.Has(tag.PeggedPrice)
|
|
}
|
|
|
|
// HasPegScope returns true if PegScope is present, Tag 840.
|
|
func (m ExecutionReport) HasPegScope() bool {
|
|
return m.Has(tag.PegScope)
|
|
}
|
|
|
|
// HasDiscretionMoveType returns true if DiscretionMoveType is present, Tag 841.
|
|
func (m ExecutionReport) HasDiscretionMoveType() bool {
|
|
return m.Has(tag.DiscretionMoveType)
|
|
}
|
|
|
|
// HasDiscretionOffsetType returns true if DiscretionOffsetType is present, Tag 842.
|
|
func (m ExecutionReport) HasDiscretionOffsetType() bool {
|
|
return m.Has(tag.DiscretionOffsetType)
|
|
}
|
|
|
|
// HasDiscretionLimitType returns true if DiscretionLimitType is present, Tag 843.
|
|
func (m ExecutionReport) HasDiscretionLimitType() bool {
|
|
return m.Has(tag.DiscretionLimitType)
|
|
}
|
|
|
|
// HasDiscretionRoundDirection returns true if DiscretionRoundDirection is present, Tag 844.
|
|
func (m ExecutionReport) HasDiscretionRoundDirection() bool {
|
|
return m.Has(tag.DiscretionRoundDirection)
|
|
}
|
|
|
|
// HasDiscretionPrice returns true if DiscretionPrice is present, Tag 845.
|
|
func (m ExecutionReport) HasDiscretionPrice() bool {
|
|
return m.Has(tag.DiscretionPrice)
|
|
}
|
|
|
|
// HasDiscretionScope returns true if DiscretionScope is present, Tag 846.
|
|
func (m ExecutionReport) HasDiscretionScope() bool {
|
|
return m.Has(tag.DiscretionScope)
|
|
}
|
|
|
|
// HasTargetStrategy returns true if TargetStrategy is present, Tag 847.
|
|
func (m ExecutionReport) HasTargetStrategy() bool {
|
|
return m.Has(tag.TargetStrategy)
|
|
}
|
|
|
|
// HasTargetStrategyParameters returns true if TargetStrategyParameters is present, Tag 848.
|
|
func (m ExecutionReport) HasTargetStrategyParameters() bool {
|
|
return m.Has(tag.TargetStrategyParameters)
|
|
}
|
|
|
|
// HasParticipationRate returns true if ParticipationRate is present, Tag 849.
|
|
func (m ExecutionReport) HasParticipationRate() bool {
|
|
return m.Has(tag.ParticipationRate)
|
|
}
|
|
|
|
// HasTargetStrategyPerformance returns true if TargetStrategyPerformance is present, Tag 850.
|
|
func (m ExecutionReport) HasTargetStrategyPerformance() bool {
|
|
return m.Has(tag.TargetStrategyPerformance)
|
|
}
|
|
|
|
// HasLastLiquidityInd returns true if LastLiquidityInd is present, Tag 851.
|
|
func (m ExecutionReport) HasLastLiquidityInd() bool {
|
|
return m.Has(tag.LastLiquidityInd)
|
|
}
|
|
|
|
// HasQtyType returns true if QtyType is present, Tag 854.
|
|
func (m ExecutionReport) HasQtyType() bool {
|
|
return m.Has(tag.QtyType)
|
|
}
|
|
|
|
// HasNoEvents returns true if NoEvents is present, Tag 864.
|
|
func (m ExecutionReport) HasNoEvents() bool {
|
|
return m.Has(tag.NoEvents)
|
|
}
|
|
|
|
// HasDatedDate returns true if DatedDate is present, Tag 873.
|
|
func (m ExecutionReport) HasDatedDate() bool {
|
|
return m.Has(tag.DatedDate)
|
|
}
|
|
|
|
// HasInterestAccrualDate returns true if InterestAccrualDate is present, Tag 874.
|
|
func (m ExecutionReport) HasInterestAccrualDate() bool {
|
|
return m.Has(tag.InterestAccrualDate)
|
|
}
|
|
|
|
// HasCPProgram returns true if CPProgram is present, Tag 875.
|
|
func (m ExecutionReport) HasCPProgram() bool {
|
|
return m.Has(tag.CPProgram)
|
|
}
|
|
|
|
// HasCPRegType returns true if CPRegType is present, Tag 876.
|
|
func (m ExecutionReport) HasCPRegType() bool {
|
|
return m.Has(tag.CPRegType)
|
|
}
|
|
|
|
// HasLastFragment returns true if LastFragment is present, Tag 893.
|
|
func (m ExecutionReport) HasLastFragment() bool {
|
|
return m.Has(tag.LastFragment)
|
|
}
|
|
|
|
// HasMarginRatio returns true if MarginRatio is present, Tag 898.
|
|
func (m ExecutionReport) HasMarginRatio() bool {
|
|
return m.Has(tag.MarginRatio)
|
|
}
|
|
|
|
// HasTotNumReports returns true if TotNumReports is present, Tag 911.
|
|
func (m ExecutionReport) HasTotNumReports() bool {
|
|
return m.Has(tag.TotNumReports)
|
|
}
|
|
|
|
// HasLastRptRequested returns true if LastRptRequested is present, Tag 912.
|
|
func (m ExecutionReport) HasLastRptRequested() bool {
|
|
return m.Has(tag.LastRptRequested)
|
|
}
|
|
|
|
// HasAgreementDesc returns true if AgreementDesc is present, Tag 913.
|
|
func (m ExecutionReport) HasAgreementDesc() bool {
|
|
return m.Has(tag.AgreementDesc)
|
|
}
|
|
|
|
// HasAgreementID returns true if AgreementID is present, Tag 914.
|
|
func (m ExecutionReport) HasAgreementID() bool {
|
|
return m.Has(tag.AgreementID)
|
|
}
|
|
|
|
// HasAgreementDate returns true if AgreementDate is present, Tag 915.
|
|
func (m ExecutionReport) HasAgreementDate() bool {
|
|
return m.Has(tag.AgreementDate)
|
|
}
|
|
|
|
// HasStartDate returns true if StartDate is present, Tag 916.
|
|
func (m ExecutionReport) HasStartDate() bool {
|
|
return m.Has(tag.StartDate)
|
|
}
|
|
|
|
// HasEndDate returns true if EndDate is present, Tag 917.
|
|
func (m ExecutionReport) HasEndDate() bool {
|
|
return m.Has(tag.EndDate)
|
|
}
|
|
|
|
// HasAgreementCurrency returns true if AgreementCurrency is present, Tag 918.
|
|
func (m ExecutionReport) HasAgreementCurrency() bool {
|
|
return m.Has(tag.AgreementCurrency)
|
|
}
|
|
|
|
// HasDeliveryType returns true if DeliveryType is present, Tag 919.
|
|
func (m ExecutionReport) HasDeliveryType() bool {
|
|
return m.Has(tag.DeliveryType)
|
|
}
|
|
|
|
// HasEndAccruedInterestAmt returns true if EndAccruedInterestAmt is present, Tag 920.
|
|
func (m ExecutionReport) HasEndAccruedInterestAmt() bool {
|
|
return m.Has(tag.EndAccruedInterestAmt)
|
|
}
|
|
|
|
// HasStartCash returns true if StartCash is present, Tag 921.
|
|
func (m ExecutionReport) HasStartCash() bool {
|
|
return m.Has(tag.StartCash)
|
|
}
|
|
|
|
// HasEndCash returns true if EndCash is present, Tag 922.
|
|
func (m ExecutionReport) HasEndCash() bool {
|
|
return m.Has(tag.EndCash)
|
|
}
|
|
|
|
// HasTimeBracket returns true if TimeBracket is present, Tag 943.
|
|
func (m ExecutionReport) HasTimeBracket() bool {
|
|
return m.Has(tag.TimeBracket)
|
|
}
|
|
|
|
// HasStrikeCurrency returns true if StrikeCurrency is present, Tag 947.
|
|
func (m ExecutionReport) HasStrikeCurrency() bool {
|
|
return m.Has(tag.StrikeCurrency)
|
|
}
|
|
|
|
// HasTradeID returns true if TradeID is present, Tag 1003.
|
|
func (m ExecutionReport) HasTradeID() bool {
|
|
return m.Has(tag.TradeID)
|
|
}
|
|
|
|
// HasNoRootPartyIDs returns true if NoRootPartyIDs is present, Tag 1116.
|
|
func (m ExecutionReport) HasNoRootPartyIDs() bool {
|
|
return m.Has(tag.NoRootPartyIDs)
|
|
}
|
|
|
|
// HasSecurityXMLLen returns true if SecurityXMLLen is present, Tag 1184.
|
|
func (m ExecutionReport) HasSecurityXMLLen() bool {
|
|
return m.Has(tag.SecurityXMLLen)
|
|
}
|
|
|
|
// HasSecurityXML returns true if SecurityXML is present, Tag 1185.
|
|
func (m ExecutionReport) HasSecurityXML() bool {
|
|
return m.Has(tag.SecurityXML)
|
|
}
|
|
|
|
// HasSecurityXMLSchema returns true if SecurityXMLSchema is present, Tag 1186.
|
|
func (m ExecutionReport) HasSecurityXMLSchema() bool {
|
|
return m.Has(tag.SecurityXMLSchema)
|
|
}
|
|
|
|
// HasNegotiationMethod returns true if NegotiationMethod is present, Tag 2115.
|
|
func (m ExecutionReport) HasNegotiationMethod() bool {
|
|
return m.Has(tag.NegotiationMethod)
|
|
}
|
|
|
|
// HasNoTrdRegPublications returns true if NoTrdRegPublications is present, Tag 2668.
|
|
func (m ExecutionReport) HasNoTrdRegPublications() bool {
|
|
return m.Has(tag.NoTrdRegPublications)
|
|
}
|
|
|
|
// HasNoCreditRating returns true if NoCreditRating is present, Tag 5114.
|
|
func (m ExecutionReport) HasNoCreditRating() bool {
|
|
return m.Has(tag.NoCreditRating)
|
|
}
|
|
|
|
// HasMultipleTickets returns true if MultipleTickets is present, Tag 5745.
|
|
func (m ExecutionReport) HasMultipleTickets() bool {
|
|
return m.Has(tag.MultipleTickets)
|
|
}
|
|
|
|
// HasReferencePrice returns true if ReferencePrice is present, Tag 6087.
|
|
func (m ExecutionReport) HasReferencePrice() bool {
|
|
return m.Has(tag.ReferencePrice)
|
|
}
|
|
|
|
// HasIndustryCode returns true if IndustryCode is present, Tag 6110.
|
|
func (m ExecutionReport) HasIndustryCode() bool {
|
|
return m.Has(tag.IndustryCode)
|
|
}
|
|
|
|
// HasOwnerTraderID returns true if OwnerTraderID is present, Tag 6153.
|
|
func (m ExecutionReport) HasOwnerTraderID() bool {
|
|
return m.Has(tag.OwnerTraderID)
|
|
}
|
|
|
|
// HasBenchmarkSymbolSfx returns true if BenchmarkSymbolSfx is present, Tag 6633.
|
|
func (m ExecutionReport) HasBenchmarkSymbolSfx() bool {
|
|
return m.Has(tag.BenchmarkSymbolSfx)
|
|
}
|
|
|
|
// HasMultilegRefID returns true if MultilegRefID is present, Tag 6735.
|
|
func (m ExecutionReport) HasMultilegRefID() bool {
|
|
return m.Has(tag.MultilegRefID)
|
|
}
|
|
|
|
// HasNetPresentValue returns true if NetPresentValue is present, Tag 7088.
|
|
func (m ExecutionReport) HasNetPresentValue() bool {
|
|
return m.Has(tag.NetPresentValue)
|
|
}
|
|
|
|
// HasDelta returns true if Delta is present, Tag 7538.
|
|
func (m ExecutionReport) HasDelta() bool {
|
|
return m.Has(tag.Delta)
|
|
}
|
|
|
|
// HasDeltaTransfer returns true if DeltaTransfer is present, Tag 7769.
|
|
func (m ExecutionReport) HasDeltaTransfer() bool {
|
|
return m.Has(tag.DeltaTransfer)
|
|
}
|
|
|
|
// HasEndDateBusDayAdj returns true if EndDateBusDayAdj is present, Tag 20038.
|
|
func (m ExecutionReport) HasEndDateBusDayAdj() bool {
|
|
return m.Has(tag.EndDateBusDayAdj)
|
|
}
|
|
|
|
// HasOnTheRunValue returns true if OnTheRunValue is present, Tag 20052.
|
|
func (m ExecutionReport) HasOnTheRunValue() bool {
|
|
return m.Has(tag.OnTheRunValue)
|
|
}
|
|
|
|
// HasReopeningValue returns true if ReopeningValue is present, Tag 20054.
|
|
func (m ExecutionReport) HasReopeningValue() bool {
|
|
return m.Has(tag.ReopeningValue)
|
|
}
|
|
|
|
// HasExecutionFeeSchedule returns true if ExecutionFeeSchedule is present, Tag 20056.
|
|
func (m ExecutionReport) HasExecutionFeeSchedule() bool {
|
|
return m.Has(tag.ExecutionFeeSchedule)
|
|
}
|
|
|
|
// HasExecutionFeeType returns true if ExecutionFeeType is present, Tag 20058.
|
|
func (m ExecutionReport) HasExecutionFeeType() bool {
|
|
return m.Has(tag.ExecutionFeeType)
|
|
}
|
|
|
|
// HasExecutionFeeMarkup returns true if ExecutionFeeMarkup is present, Tag 20060.
|
|
func (m ExecutionReport) HasExecutionFeeMarkup() bool {
|
|
return m.Has(tag.ExecutionFeeMarkup)
|
|
}
|
|
|
|
// HasExecutionFeeAmount returns true if ExecutionFeeAmount is present, Tag 20062.
|
|
func (m ExecutionReport) HasExecutionFeeAmount() bool {
|
|
return m.Has(tag.ExecutionFeeAmount)
|
|
}
|
|
|
|
// HasWinningPrice returns true if WinningPrice is present, Tag 20070.
|
|
func (m ExecutionReport) HasWinningPrice() bool {
|
|
return m.Has(tag.WinningPrice)
|
|
}
|
|
|
|
// HasNegotiationType returns true if NegotiationType is present, Tag 20073.
|
|
func (m ExecutionReport) HasNegotiationType() bool {
|
|
return m.Has(tag.NegotiationType)
|
|
}
|
|
|
|
// HasTimeoutPeriod returns true if TimeoutPeriod is present, Tag 20079.
|
|
func (m ExecutionReport) HasTimeoutPeriod() bool {
|
|
return m.Has(tag.TimeoutPeriod)
|
|
}
|
|
|
|
// HasNoOfDealers returns true if NoOfDealers is present, Tag 20086.
|
|
func (m ExecutionReport) HasNoOfDealers() bool {
|
|
return m.Has(tag.NoOfDealers)
|
|
}
|
|
|
|
// HasDoneawayStatus returns true if DoneawayStatus is present, Tag 20103.
|
|
func (m ExecutionReport) HasDoneawayStatus() bool {
|
|
return m.Has(tag.DoneawayStatus)
|
|
}
|
|
|
|
// HasQuoteSeen returns true if QuoteSeen is present, Tag 20104.
|
|
func (m ExecutionReport) HasQuoteSeen() bool {
|
|
return m.Has(tag.QuoteSeen)
|
|
}
|
|
|
|
// HasBestBid1 returns true if BestBid1 is present, Tag 20105.
|
|
func (m ExecutionReport) HasBestBid1() bool {
|
|
return m.Has(tag.BestBid1)
|
|
}
|
|
|
|
// HasBestBid2 returns true if BestBid2 is present, Tag 20106.
|
|
func (m ExecutionReport) HasBestBid2() bool {
|
|
return m.Has(tag.BestBid2)
|
|
}
|
|
|
|
// HasBestOffer1 returns true if BestOffer1 is present, Tag 20107.
|
|
func (m ExecutionReport) HasBestOffer1() bool {
|
|
return m.Has(tag.BestOffer1)
|
|
}
|
|
|
|
// HasBestOffer2 returns true if BestOffer2 is present, Tag 20108.
|
|
func (m ExecutionReport) HasBestOffer2() bool {
|
|
return m.Has(tag.BestOffer2)
|
|
}
|
|
|
|
// HasAverageBidOfferSpread returns true if AverageBidOfferSpread is present, Tag 20109.
|
|
func (m ExecutionReport) HasAverageBidOfferSpread() bool {
|
|
return m.Has(tag.AverageBidOfferSpread)
|
|
}
|
|
|
|
// HasCoverStatus returns true if CoverStatus is present, Tag 20110.
|
|
func (m ExecutionReport) HasCoverStatus() bool {
|
|
return m.Has(tag.CoverStatus)
|
|
}
|
|
|
|
// HasCoverPrice returns true if CoverPrice is present, Tag 20111.
|
|
func (m ExecutionReport) HasCoverPrice() bool {
|
|
return m.Has(tag.CoverPrice)
|
|
}
|
|
|
|
// HasOutrightPrice returns true if OutrightPrice is present, Tag 20115.
|
|
func (m ExecutionReport) HasOutrightPrice() bool {
|
|
return m.Has(tag.OutrightPrice)
|
|
}
|
|
|
|
// HasOutstandingAmount returns true if OutstandingAmount is present, Tag 20130.
|
|
func (m ExecutionReport) HasOutstandingAmount() bool {
|
|
return m.Has(tag.OutstandingAmount)
|
|
}
|
|
|
|
// HasLeadManagers returns true if LeadManagers is present, Tag 20138.
|
|
func (m ExecutionReport) HasLeadManagers() bool {
|
|
return m.Has(tag.LeadManagers)
|
|
}
|
|
|
|
// HasNoCalcProvided returns true if NoCalcProvided is present, Tag 20140.
|
|
func (m ExecutionReport) HasNoCalcProvided() bool {
|
|
return m.Has(tag.NoCalcProvided)
|
|
}
|
|
|
|
// HasPricingTier returns true if PricingTier is present, Tag 20147.
|
|
func (m ExecutionReport) HasPricingTier() bool {
|
|
return m.Has(tag.PricingTier)
|
|
}
|
|
|
|
// HasBestQuote returns true if BestQuote is present, Tag 20155.
|
|
func (m ExecutionReport) HasBestQuote() bool {
|
|
return m.Has(tag.BestQuote)
|
|
}
|
|
|
|
// HasFirstCouponPaymentDate returns true if FirstCouponPaymentDate is present, Tag 20175.
|
|
func (m ExecutionReport) HasFirstCouponPaymentDate() bool {
|
|
return m.Has(tag.FirstCouponPaymentDate)
|
|
}
|
|
|
|
// HasNextCouponRate returns true if NextCouponRate is present, Tag 20179.
|
|
func (m ExecutionReport) HasNextCouponRate() bool {
|
|
return m.Has(tag.NextCouponRate)
|
|
}
|
|
|
|
// HasCallDate returns true if CallDate is present, Tag 20222.
|
|
func (m ExecutionReport) HasCallDate() bool {
|
|
return m.Has(tag.CallDate)
|
|
}
|
|
|
|
// HasCallType returns true if CallType is present, Tag 20223.
|
|
func (m ExecutionReport) HasCallType() bool {
|
|
return m.Has(tag.CallType)
|
|
}
|
|
|
|
// HasRegulatoryType returns true if RegulatoryType is present, Tag 20227.
|
|
func (m ExecutionReport) HasRegulatoryType() bool {
|
|
return m.Has(tag.RegulatoryType)
|
|
}
|
|
|
|
// HasTradeAxeIndicator returns true if TradeAxeIndicator is present, Tag 20232.
|
|
func (m ExecutionReport) HasTradeAxeIndicator() bool {
|
|
return m.Has(tag.TradeAxeIndicator)
|
|
}
|
|
|
|
// HasHDGQTY returns true if HDGQTY is present, Tag 20250.
|
|
func (m ExecutionReport) HasHDGQTY() bool {
|
|
return m.Has(tag.HDGQTY)
|
|
}
|
|
|
|
// HasIntermediated returns true if Intermediated is present, Tag 20262.
|
|
func (m ExecutionReport) HasIntermediated() bool {
|
|
return m.Has(tag.Intermediated)
|
|
}
|
|
|
|
// HasMarketSegment returns true if MarketSegment is present, Tag 20265.
|
|
func (m ExecutionReport) HasMarketSegment() bool {
|
|
return m.Has(tag.MarketSegment)
|
|
}
|
|
|
|
// HasCallPrice returns true if CallPrice is present, Tag 20266.
|
|
func (m ExecutionReport) HasCallPrice() bool {
|
|
return m.Has(tag.CallPrice)
|
|
}
|
|
|
|
// HasTotNoOfMessages returns true if TotNoOfMessages is present, Tag 20394.
|
|
func (m ExecutionReport) HasTotNoOfMessages() bool {
|
|
return m.Has(tag.TotNoOfMessages)
|
|
}
|
|
|
|
// HasMessageNo returns true if MessageNo is present, Tag 20395.
|
|
func (m ExecutionReport) HasMessageNo() bool {
|
|
return m.Has(tag.MessageNo)
|
|
}
|
|
|
|
// HasNoHedge returns true if NoHedge is present, Tag 20630.
|
|
func (m ExecutionReport) HasNoHedge() bool {
|
|
return m.Has(tag.NoHedge)
|
|
}
|
|
|
|
// HasBenchmarkYield returns true if BenchmarkYield is present, Tag 22570.
|
|
func (m ExecutionReport) HasBenchmarkYield() bool {
|
|
return m.Has(tag.BenchmarkYield)
|
|
}
|
|
|
|
// HasUseDealerBenchmark returns true if UseDealerBenchmark is present, Tag 22576.
|
|
func (m ExecutionReport) HasUseDealerBenchmark() bool {
|
|
return m.Has(tag.UseDealerBenchmark)
|
|
}
|
|
|
|
// HasFxRate returns true if FxRate is present, Tag 22630.
|
|
func (m ExecutionReport) HasFxRate() bool {
|
|
return m.Has(tag.FxRate)
|
|
}
|
|
|
|
// HasConfCoriBook returns true if ConfCoriBook is present, Tag 22631.
|
|
func (m ExecutionReport) HasConfCoriBook() bool {
|
|
return m.Has(tag.ConfCoriBook)
|
|
}
|
|
|
|
// HasConfTrsyBook returns true if ConfTrsyBook is present, Tag 22632.
|
|
func (m ExecutionReport) HasConfTrsyBook() bool {
|
|
return m.Has(tag.ConfTrsyBook)
|
|
}
|
|
|
|
// HasOtherTrdRefID returns true if OtherTrdRefID is present, Tag 22634.
|
|
func (m ExecutionReport) HasOtherTrdRefID() bool {
|
|
return m.Has(tag.OtherTrdRefID)
|
|
}
|
|
|
|
// HasTradeSummary returns true if TradeSummary is present, Tag 22636.
|
|
func (m ExecutionReport) HasTradeSummary() bool {
|
|
return m.Has(tag.TradeSummary)
|
|
}
|
|
|
|
// HasDealerInternalNote returns true if DealerInternalNote is present, Tag 22637.
|
|
func (m ExecutionReport) HasDealerInternalNote() bool {
|
|
return m.Has(tag.DealerInternalNote)
|
|
}
|
|
|
|
// HasHedgeIsPartOfNetHedge returns true if HedgeIsPartOfNetHedge is present, Tag 22638.
|
|
func (m ExecutionReport) HasHedgeIsPartOfNetHedge() bool {
|
|
return m.Has(tag.HedgeIsPartOfNetHedge)
|
|
}
|
|
|
|
// HasNegotiationTime returns true if NegotiationTime is present, Tag 22639.
|
|
func (m ExecutionReport) HasNegotiationTime() bool {
|
|
return m.Has(tag.NegotiationTime)
|
|
}
|
|
|
|
// HasDealerInternalNote2 returns true if DealerInternalNote2 is present, Tag 22640.
|
|
func (m ExecutionReport) HasDealerInternalNote2() bool {
|
|
return m.Has(tag.DealerInternalNote2)
|
|
}
|
|
|
|
// HasIntermediatedTradeType returns true if IntermediatedTradeType is present, Tag 22649.
|
|
func (m ExecutionReport) HasIntermediatedTradeType() bool {
|
|
return m.Has(tag.IntermediatedTradeType)
|
|
}
|
|
|
|
// HasLinkedTrdRefID returns true if LinkedTrdRefID is present, Tag 22650.
|
|
func (m ExecutionReport) HasLinkedTrdRefID() bool {
|
|
return m.Has(tag.LinkedTrdRefID)
|
|
}
|
|
|
|
// HasClientTradingCapacity returns true if ClientTradingCapacity is present, Tag 23060.
|
|
func (m ExecutionReport) HasClientTradingCapacity() bool {
|
|
return m.Has(tag.ClientTradingCapacity)
|
|
}
|
|
|
|
// HasDealerTradingCapacity returns true if DealerTradingCapacity is present, Tag 23061.
|
|
func (m ExecutionReport) HasDealerTradingCapacity() bool {
|
|
return m.Has(tag.DealerTradingCapacity)
|
|
}
|
|
|
|
// HasShortSellingIndicator returns true if ShortSellingIndicator is present, Tag 23066.
|
|
func (m ExecutionReport) HasShortSellingIndicator() bool {
|
|
return m.Has(tag.ShortSellingIndicator)
|
|
}
|
|
|
|
// HasMiFIDMIC returns true if MiFIDMIC is present, Tag 23068.
|
|
func (m ExecutionReport) HasMiFIDMIC() bool {
|
|
return m.Has(tag.MiFIDMIC)
|
|
}
|
|
|
|
// HasOnMTF returns true if OnMTF is present, Tag 23070.
|
|
func (m ExecutionReport) HasOnMTF() bool {
|
|
return m.Has(tag.OnMTF)
|
|
}
|
|
|
|
// HasPortfolioTrade returns true if PortfolioTrade is present, Tag 23079.
|
|
func (m ExecutionReport) HasPortfolioTrade() bool {
|
|
return m.Has(tag.PortfolioTrade)
|
|
}
|
|
|
|
// HasComplexTradeID returns true if ComplexTradeID is present, Tag 23096.
|
|
func (m ExecutionReport) HasComplexTradeID() bool {
|
|
return m.Has(tag.ComplexTradeID)
|
|
}
|
|
|
|
// HasPriceSrcVal returns true if PriceSrcVal is present, Tag 23097.
|
|
func (m ExecutionReport) HasPriceSrcVal() bool {
|
|
return m.Has(tag.PriceSrcVal)
|
|
}
|
|
|
|
// HasPriceSrcTime returns true if PriceSrcTime is present, Tag 23099.
|
|
func (m ExecutionReport) HasPriceSrcTime() bool {
|
|
return m.Has(tag.PriceSrcTime)
|
|
}
|
|
|
|
// HasPriceSrcSide returns true if PriceSrcSide is present, Tag 23100.
|
|
func (m ExecutionReport) HasPriceSrcSide() bool {
|
|
return m.Has(tag.PriceSrcSide)
|
|
}
|
|
|
|
// HasPriceSrcOffType returns true if PriceSrcOffType is present, Tag 23101.
|
|
func (m ExecutionReport) HasPriceSrcOffType() bool {
|
|
return m.Has(tag.PriceSrcOffType)
|
|
}
|
|
|
|
// HasCoopStatus returns true if CoopStatus is present, Tag 23670.
|
|
func (m ExecutionReport) HasCoopStatus() bool {
|
|
return m.Has(tag.CoopStatus)
|
|
}
|
|
|
|
// HasImpliedCoverProceeds returns true if ImpliedCoverProceeds is present, Tag 23671.
|
|
func (m ExecutionReport) HasImpliedCoverProceeds() bool {
|
|
return m.Has(tag.ImpliedCoverProceeds)
|
|
}
|
|
|
|
// NoMiscFees is a repeating group element, Tag 136.
|
|
type NoMiscFees struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetMiscFeeAmt sets MiscFeeAmt, Tag 137.
|
|
func (m NoMiscFees) SetMiscFeeAmt(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewMiscFeeAmt(value, scale))
|
|
}
|
|
|
|
// SetMiscFeeCurr sets MiscFeeCurr, Tag 138.
|
|
func (m NoMiscFees) SetMiscFeeCurr(v string) {
|
|
m.Set(field.NewMiscFeeCurr(v))
|
|
}
|
|
|
|
// SetMiscFeeType sets MiscFeeType, Tag 139.
|
|
func (m NoMiscFees) SetMiscFeeType(v enum.MiscFeeType) {
|
|
m.Set(field.NewMiscFeeType(v))
|
|
}
|
|
|
|
// SetMiscFeeBasis sets MiscFeeBasis, Tag 891.
|
|
func (m NoMiscFees) SetMiscFeeBasis(v enum.MiscFeeBasis) {
|
|
m.Set(field.NewMiscFeeBasis(v))
|
|
}
|
|
|
|
// GetMiscFeeAmt gets MiscFeeAmt, Tag 137.
|
|
func (m NoMiscFees) GetMiscFeeAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.MiscFeeAmtField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMiscFeeCurr gets MiscFeeCurr, Tag 138.
|
|
func (m NoMiscFees) GetMiscFeeCurr() (v string, err quickfix.MessageRejectError) {
|
|
var f field.MiscFeeCurrField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMiscFeeType gets MiscFeeType, Tag 139.
|
|
func (m NoMiscFees) GetMiscFeeType() (v enum.MiscFeeType, err quickfix.MessageRejectError) {
|
|
var f field.MiscFeeTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMiscFeeBasis gets MiscFeeBasis, Tag 891.
|
|
func (m NoMiscFees) GetMiscFeeBasis() (v enum.MiscFeeBasis, err quickfix.MessageRejectError) {
|
|
var f field.MiscFeeBasisField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasMiscFeeAmt returns true if MiscFeeAmt is present, Tag 137.
|
|
func (m NoMiscFees) HasMiscFeeAmt() bool {
|
|
return m.Has(tag.MiscFeeAmt)
|
|
}
|
|
|
|
// HasMiscFeeCurr returns true if MiscFeeCurr is present, Tag 138.
|
|
func (m NoMiscFees) HasMiscFeeCurr() bool {
|
|
return m.Has(tag.MiscFeeCurr)
|
|
}
|
|
|
|
// HasMiscFeeType returns true if MiscFeeType is present, Tag 139.
|
|
func (m NoMiscFees) HasMiscFeeType() bool {
|
|
return m.Has(tag.MiscFeeType)
|
|
}
|
|
|
|
// HasMiscFeeBasis returns true if MiscFeeBasis is present, Tag 891.
|
|
func (m NoMiscFees) HasMiscFeeBasis() bool {
|
|
return m.Has(tag.MiscFeeBasis)
|
|
}
|
|
|
|
// NoMiscFeesRepeatingGroup is a repeating group, Tag 136.
|
|
type NoMiscFeesRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoMiscFeesRepeatingGroup returns an initialized, NoMiscFeesRepeatingGroup.
|
|
func NewNoMiscFeesRepeatingGroup() NoMiscFeesRepeatingGroup {
|
|
return NoMiscFeesRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoMiscFees,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.MiscFeeAmt),
|
|
quickfix.GroupElement(tag.MiscFeeCurr),
|
|
quickfix.GroupElement(tag.MiscFeeType),
|
|
quickfix.GroupElement(tag.MiscFeeBasis),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoMiscFees to this group.
|
|
func (m NoMiscFeesRepeatingGroup) Add() NoMiscFees {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoMiscFees{g}
|
|
}
|
|
|
|
// Get returns the ith NoMiscFees in the NoMiscFeesRepeatinGroup.
|
|
func (m NoMiscFeesRepeatingGroup) Get(i int) NoMiscFees {
|
|
return NoMiscFees{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)}
|
|
}
|
|
|
|
// NoContraBrokers is a repeating group element, Tag 382.
|
|
type NoContraBrokers struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetContraBroker sets ContraBroker, Tag 375.
|
|
func (m NoContraBrokers) SetContraBroker(v string) {
|
|
m.Set(field.NewContraBroker(v))
|
|
}
|
|
|
|
// SetContraTrader sets ContraTrader, Tag 337.
|
|
func (m NoContraBrokers) SetContraTrader(v string) {
|
|
m.Set(field.NewContraTrader(v))
|
|
}
|
|
|
|
// SetContraTradeQty sets ContraTradeQty, Tag 437.
|
|
func (m NoContraBrokers) SetContraTradeQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewContraTradeQty(value, scale))
|
|
}
|
|
|
|
// SetContraTradeTime sets ContraTradeTime, Tag 438.
|
|
func (m NoContraBrokers) SetContraTradeTime(v time.Time) {
|
|
m.Set(field.NewContraTradeTime(v))
|
|
}
|
|
|
|
// SetContraLegRefID sets ContraLegRefID, Tag 655.
|
|
func (m NoContraBrokers) SetContraLegRefID(v string) {
|
|
m.Set(field.NewContraLegRefID(v))
|
|
}
|
|
|
|
// GetContraBroker gets ContraBroker, Tag 375.
|
|
func (m NoContraBrokers) GetContraBroker() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ContraBrokerField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetContraTrader gets ContraTrader, Tag 337.
|
|
func (m NoContraBrokers) GetContraTrader() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ContraTraderField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetContraTradeQty gets ContraTradeQty, Tag 437.
|
|
func (m NoContraBrokers) GetContraTradeQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ContraTradeQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetContraTradeTime gets ContraTradeTime, Tag 438.
|
|
func (m NoContraBrokers) GetContraTradeTime() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.ContraTradeTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetContraLegRefID gets ContraLegRefID, Tag 655.
|
|
func (m NoContraBrokers) GetContraLegRefID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ContraLegRefIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasContraBroker returns true if ContraBroker is present, Tag 375.
|
|
func (m NoContraBrokers) HasContraBroker() bool {
|
|
return m.Has(tag.ContraBroker)
|
|
}
|
|
|
|
// HasContraTrader returns true if ContraTrader is present, Tag 337.
|
|
func (m NoContraBrokers) HasContraTrader() bool {
|
|
return m.Has(tag.ContraTrader)
|
|
}
|
|
|
|
// HasContraTradeQty returns true if ContraTradeQty is present, Tag 437.
|
|
func (m NoContraBrokers) HasContraTradeQty() bool {
|
|
return m.Has(tag.ContraTradeQty)
|
|
}
|
|
|
|
// HasContraTradeTime returns true if ContraTradeTime is present, Tag 438.
|
|
func (m NoContraBrokers) HasContraTradeTime() bool {
|
|
return m.Has(tag.ContraTradeTime)
|
|
}
|
|
|
|
// HasContraLegRefID returns true if ContraLegRefID is present, Tag 655.
|
|
func (m NoContraBrokers) HasContraLegRefID() bool {
|
|
return m.Has(tag.ContraLegRefID)
|
|
}
|
|
|
|
// NoContraBrokersRepeatingGroup is a repeating group, Tag 382.
|
|
type NoContraBrokersRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoContraBrokersRepeatingGroup returns an initialized, NoContraBrokersRepeatingGroup.
|
|
func NewNoContraBrokersRepeatingGroup() NoContraBrokersRepeatingGroup {
|
|
return NoContraBrokersRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoContraBrokers,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.ContraBroker),
|
|
quickfix.GroupElement(tag.ContraTrader),
|
|
quickfix.GroupElement(tag.ContraTradeQty),
|
|
quickfix.GroupElement(tag.ContraTradeTime),
|
|
quickfix.GroupElement(tag.ContraLegRefID),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoContraBrokers to this group.
|
|
func (m NoContraBrokersRepeatingGroup) Add() NoContraBrokers {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoContraBrokers{g}
|
|
}
|
|
|
|
// Get returns the ith NoContraBrokers in the NoContraBrokersRepeatinGroup.
|
|
func (m NoContraBrokersRepeatingGroup) Get(i int) NoContraBrokers {
|
|
return NoContraBrokers{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)}
|
|
}
|
|
|
|
// 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)}
|
|
}
|
|
|
|
// NoContAmts is a repeating group element, Tag 518.
|
|
type NoContAmts struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetContAmtType sets ContAmtType, Tag 519.
|
|
func (m NoContAmts) SetContAmtType(v enum.ContAmtType) {
|
|
m.Set(field.NewContAmtType(v))
|
|
}
|
|
|
|
// SetContAmtValue sets ContAmtValue, Tag 520.
|
|
func (m NoContAmts) SetContAmtValue(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewContAmtValue(value, scale))
|
|
}
|
|
|
|
// SetContAmtCurr sets ContAmtCurr, Tag 521.
|
|
func (m NoContAmts) SetContAmtCurr(v string) {
|
|
m.Set(field.NewContAmtCurr(v))
|
|
}
|
|
|
|
// GetContAmtType gets ContAmtType, Tag 519.
|
|
func (m NoContAmts) GetContAmtType() (v enum.ContAmtType, err quickfix.MessageRejectError) {
|
|
var f field.ContAmtTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetContAmtValue gets ContAmtValue, Tag 520.
|
|
func (m NoContAmts) GetContAmtValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ContAmtValueField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetContAmtCurr gets ContAmtCurr, Tag 521.
|
|
func (m NoContAmts) GetContAmtCurr() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ContAmtCurrField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasContAmtType returns true if ContAmtType is present, Tag 519.
|
|
func (m NoContAmts) HasContAmtType() bool {
|
|
return m.Has(tag.ContAmtType)
|
|
}
|
|
|
|
// HasContAmtValue returns true if ContAmtValue is present, Tag 520.
|
|
func (m NoContAmts) HasContAmtValue() bool {
|
|
return m.Has(tag.ContAmtValue)
|
|
}
|
|
|
|
// HasContAmtCurr returns true if ContAmtCurr is present, Tag 521.
|
|
func (m NoContAmts) HasContAmtCurr() bool {
|
|
return m.Has(tag.ContAmtCurr)
|
|
}
|
|
|
|
// NoContAmtsRepeatingGroup is a repeating group, Tag 518.
|
|
type NoContAmtsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoContAmtsRepeatingGroup returns an initialized, NoContAmtsRepeatingGroup.
|
|
func NewNoContAmtsRepeatingGroup() NoContAmtsRepeatingGroup {
|
|
return NoContAmtsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoContAmts,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.ContAmtType),
|
|
quickfix.GroupElement(tag.ContAmtValue),
|
|
quickfix.GroupElement(tag.ContAmtCurr),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoContAmts to this group.
|
|
func (m NoContAmtsRepeatingGroup) Add() NoContAmts {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoContAmts{g}
|
|
}
|
|
|
|
// Get returns the ith NoContAmts in the NoContAmtsRepeatinGroup.
|
|
func (m NoContAmtsRepeatingGroup) Get(i int) NoContAmts {
|
|
return NoContAmts{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))
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// SetLegPositionEffect sets LegPositionEffect, Tag 564.
|
|
func (m NoLegs) SetLegPositionEffect(v string) {
|
|
m.Set(field.NewLegPositionEffect(v))
|
|
}
|
|
|
|
// SetLegCoveredOrUncovered sets LegCoveredOrUncovered, Tag 565.
|
|
func (m NoLegs) SetLegCoveredOrUncovered(v int) {
|
|
m.Set(field.NewLegCoveredOrUncovered(v))
|
|
}
|
|
|
|
// SetLegRefID sets LegRefID, Tag 654.
|
|
func (m NoLegs) SetLegRefID(v string) {
|
|
m.Set(field.NewLegRefID(v))
|
|
}
|
|
|
|
// SetLegPriceType sets LegPriceType, Tag 686.
|
|
func (m NoLegs) SetLegPriceType(v int) {
|
|
m.Set(field.NewLegPriceType(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))
|
|
}
|
|
|
|
// SetLegLastPx sets LegLastPx, Tag 637.
|
|
func (m NoLegs) SetLegLastPx(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLegLastPx(value, scale))
|
|
}
|
|
|
|
// SetTradeLegRefID sets TradeLegRefID, Tag 824.
|
|
func (m NoLegs) SetTradeLegRefID(v string) {
|
|
m.Set(field.NewTradeLegRefID(v))
|
|
}
|
|
|
|
// SetLegGrossTradeAmt sets LegGrossTradeAmt, Tag 6723.
|
|
func (m NoLegs) SetLegGrossTradeAmt(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLegGrossTradeAmt(value, scale))
|
|
}
|
|
|
|
// SetLegAccruedInterestAmt sets LegAccruedInterestAmt, Tag 6724.
|
|
func (m NoLegs) SetLegAccruedInterestAmt(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLegAccruedInterestAmt(value, scale))
|
|
}
|
|
|
|
// SetLegNetMoney sets LegNetMoney, Tag 6726.
|
|
func (m NoLegs) SetLegNetMoney(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLegNetMoney(value, scale))
|
|
}
|
|
|
|
// SetLegNetPresentValue sets LegNetPresentValue, Tag 20064.
|
|
func (m NoLegs) SetLegNetPresentValue(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLegNetPresentValue(value, scale))
|
|
}
|
|
|
|
// SetLegUseDealerBenchmark sets LegUseDealerBenchmark, Tag 22577.
|
|
func (m NoLegs) SetLegUseDealerBenchmark(v bool) {
|
|
m.Set(field.NewLegUseDealerBenchmark(v))
|
|
}
|
|
|
|
// SetLegConfCoriBook sets LegConfCoriBook, Tag 23102.
|
|
func (m NoLegs) SetLegConfCoriBook(v string) {
|
|
m.Set(field.NewLegConfCoriBook(v))
|
|
}
|
|
|
|
// SetLegConfTrsyBook sets LegConfTrsyBook, Tag 23103.
|
|
func (m NoLegs) SetLegConfTrsyBook(v string) {
|
|
m.Set(field.NewLegConfTrsyBook(v))
|
|
}
|
|
|
|
// SetLegDealerInternalNote sets LegDealerInternalNote, Tag 23104.
|
|
func (m NoLegs) SetLegDealerInternalNote(v string) {
|
|
m.Set(field.NewLegDealerInternalNote(v))
|
|
}
|
|
|
|
// SetLegNoHedge sets LegNoHedge, Tag 23105.
|
|
func (m NoLegs) SetLegNoHedge(v bool) {
|
|
m.Set(field.NewLegNoHedge(v))
|
|
}
|
|
|
|
// SetLegDealerInternalNote2 sets LegDealerInternalNote2, Tag 23106.
|
|
func (m NoLegs) SetLegDealerInternalNote2(v string) {
|
|
m.Set(field.NewLegDealerInternalNote2(v))
|
|
}
|
|
|
|
// SetLegTradeAxeIndicator sets LegTradeAxeIndicator, Tag 20234.
|
|
func (m NoLegs) SetLegTradeAxeIndicator(v string) {
|
|
m.Set(field.NewLegTradeAxeIndicator(v))
|
|
}
|
|
|
|
// SetLegOutrightPrice sets LegOutrightPrice, Tag 20249.
|
|
func (m NoLegs) SetLegOutrightPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLegOutrightPrice(value, scale))
|
|
}
|
|
|
|
// SetLegYield sets LegYield, Tag 20178.
|
|
func (m NoLegs) SetLegYield(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLegYield(value, scale))
|
|
}
|
|
|
|
// 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))
|
|
}
|
|
|
|
// SetLegExecutionFeeMarkup sets LegExecutionFeeMarkup, Tag 20061.
|
|
func (m NoLegs) SetLegExecutionFeeMarkup(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLegExecutionFeeMarkup(value, scale))
|
|
}
|
|
|
|
// SetLegExecutionFeeAmount sets LegExecutionFeeAmount, Tag 20063.
|
|
func (m NoLegs) SetLegExecutionFeeAmount(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLegExecutionFeeAmount(value, scale))
|
|
}
|
|
|
|
// SetTradingSystemID sets TradingSystemID, Tag 6731.
|
|
func (m NoLegs) SetTradingSystemID(v string) {
|
|
m.Set(field.NewTradingSystemID(v))
|
|
}
|
|
|
|
// SetLegFxRate sets LegFxRate, Tag 22644.
|
|
func (m NoLegs) SetLegFxRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLegFxRate(value, scale))
|
|
}
|
|
|
|
// 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))
|
|
}
|
|
|
|
// 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))
|
|
}
|
|
|
|
// SetLegOutstandingAmount sets LegOutstandingAmount, Tag 20131.
|
|
func (m NoLegs) SetLegOutstandingAmount(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewLegOutstandingAmount(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))
|
|
}
|
|
|
|
// SetLegBenchmarkSymbolSfx sets LegBenchmarkSymbolSfx, Tag 20144.
|
|
func (m NoLegs) SetLegBenchmarkSymbolSfx(v string) {
|
|
m.Set(field.NewLegBenchmarkSymbolSfx(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))
|
|
}
|
|
|
|
// 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))
|
|
}
|
|
|
|
// SetLegIndustryCode sets LegIndustryCode, Tag 22567.
|
|
func (m NoLegs) SetLegIndustryCode(v string) {
|
|
m.Set(field.NewLegIndustryCode(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))
|
|
}
|
|
|
|
// 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))
|
|
}
|
|
|
|
// 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))
|
|
}
|
|
|
|
// SetNoRegulatoryTradeIDs sets NoRegulatoryTradeIDs, Tag 1907.
|
|
func (m NoLegs) SetNoRegulatoryTradeIDs(f NoRegulatoryTradeIDsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// GetLegCoveredOrUncovered gets LegCoveredOrUncovered, Tag 565.
|
|
func (m NoLegs) GetLegCoveredOrUncovered() (v int, err quickfix.MessageRejectError) {
|
|
var f field.LegCoveredOrUncoveredField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLegRefID gets LegRefID, Tag 654.
|
|
func (m NoLegs) GetLegRefID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.LegRefIDField
|
|
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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// GetLegLastPx gets LegLastPx, Tag 637.
|
|
func (m NoLegs) GetLegLastPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LegLastPxField
|
|
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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// GetLegAccruedInterestAmt gets LegAccruedInterestAmt, Tag 6724.
|
|
func (m NoLegs) GetLegAccruedInterestAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LegAccruedInterestAmtField
|
|
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
|
|
}
|
|
|
|
// GetLegNetPresentValue gets LegNetPresentValue, Tag 20064.
|
|
func (m NoLegs) GetLegNetPresentValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LegNetPresentValueField
|
|
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
|
|
}
|
|
|
|
// GetLegConfCoriBook gets LegConfCoriBook, Tag 23102.
|
|
func (m NoLegs) GetLegConfCoriBook() (v string, err quickfix.MessageRejectError) {
|
|
var f field.LegConfCoriBookField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLegConfTrsyBook gets LegConfTrsyBook, Tag 23103.
|
|
func (m NoLegs) GetLegConfTrsyBook() (v string, err quickfix.MessageRejectError) {
|
|
var f field.LegConfTrsyBookField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLegDealerInternalNote gets LegDealerInternalNote, Tag 23104.
|
|
func (m NoLegs) GetLegDealerInternalNote() (v string, err quickfix.MessageRejectError) {
|
|
var f field.LegDealerInternalNoteField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLegNoHedge gets LegNoHedge, Tag 23105.
|
|
func (m NoLegs) GetLegNoHedge() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.LegNoHedgeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLegDealerInternalNote2 gets LegDealerInternalNote2, Tag 23106.
|
|
func (m NoLegs) GetLegDealerInternalNote2() (v string, err quickfix.MessageRejectError) {
|
|
var f field.LegDealerInternalNote2Field
|
|
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
|
|
}
|
|
|
|
// GetLegOutrightPrice gets LegOutrightPrice, Tag 20249.
|
|
func (m NoLegs) GetLegOutrightPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LegOutrightPriceField
|
|
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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// GetLegExecutionFeeMarkup gets LegExecutionFeeMarkup, Tag 20061.
|
|
func (m NoLegs) GetLegExecutionFeeMarkup() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LegExecutionFeeMarkupField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLegExecutionFeeAmount gets LegExecutionFeeAmount, Tag 20063.
|
|
func (m NoLegs) GetLegExecutionFeeAmount() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.LegExecutionFeeAmountField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTradingSystemID gets TradingSystemID, Tag 6731.
|
|
func (m NoLegs) GetTradingSystemID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.TradingSystemIDField
|
|
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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// GetNoRegulatoryTradeIDs gets NoRegulatoryTradeIDs, Tag 1907.
|
|
func (m NoLegs) GetNoRegulatoryTradeIDs() (NoRegulatoryTradeIDsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoRegulatoryTradeIDsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// HasLegPositionEffect returns true if LegPositionEffect is present, Tag 564.
|
|
func (m NoLegs) HasLegPositionEffect() bool {
|
|
return m.Has(tag.LegPositionEffect)
|
|
}
|
|
|
|
// HasLegCoveredOrUncovered returns true if LegCoveredOrUncovered is present, Tag 565.
|
|
func (m NoLegs) HasLegCoveredOrUncovered() bool {
|
|
return m.Has(tag.LegCoveredOrUncovered)
|
|
}
|
|
|
|
// HasLegRefID returns true if LegRefID is present, Tag 654.
|
|
func (m NoLegs) HasLegRefID() bool {
|
|
return m.Has(tag.LegRefID)
|
|
}
|
|
|
|
// HasLegPriceType returns true if LegPriceType is present, Tag 686.
|
|
func (m NoLegs) HasLegPriceType() bool {
|
|
return m.Has(tag.LegPriceType)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// HasLegLastPx returns true if LegLastPx is present, Tag 637.
|
|
func (m NoLegs) HasLegLastPx() bool {
|
|
return m.Has(tag.LegLastPx)
|
|
}
|
|
|
|
// HasTradeLegRefID returns true if TradeLegRefID is present, Tag 824.
|
|
func (m NoLegs) HasTradeLegRefID() bool {
|
|
return m.Has(tag.TradeLegRefID)
|
|
}
|
|
|
|
// HasLegGrossTradeAmt returns true if LegGrossTradeAmt is present, Tag 6723.
|
|
func (m NoLegs) HasLegGrossTradeAmt() bool {
|
|
return m.Has(tag.LegGrossTradeAmt)
|
|
}
|
|
|
|
// HasLegAccruedInterestAmt returns true if LegAccruedInterestAmt is present, Tag 6724.
|
|
func (m NoLegs) HasLegAccruedInterestAmt() bool {
|
|
return m.Has(tag.LegAccruedInterestAmt)
|
|
}
|
|
|
|
// HasLegNetMoney returns true if LegNetMoney is present, Tag 6726.
|
|
func (m NoLegs) HasLegNetMoney() bool {
|
|
return m.Has(tag.LegNetMoney)
|
|
}
|
|
|
|
// HasLegNetPresentValue returns true if LegNetPresentValue is present, Tag 20064.
|
|
func (m NoLegs) HasLegNetPresentValue() bool {
|
|
return m.Has(tag.LegNetPresentValue)
|
|
}
|
|
|
|
// HasLegUseDealerBenchmark returns true if LegUseDealerBenchmark is present, Tag 22577.
|
|
func (m NoLegs) HasLegUseDealerBenchmark() bool {
|
|
return m.Has(tag.LegUseDealerBenchmark)
|
|
}
|
|
|
|
// HasLegConfCoriBook returns true if LegConfCoriBook is present, Tag 23102.
|
|
func (m NoLegs) HasLegConfCoriBook() bool {
|
|
return m.Has(tag.LegConfCoriBook)
|
|
}
|
|
|
|
// HasLegConfTrsyBook returns true if LegConfTrsyBook is present, Tag 23103.
|
|
func (m NoLegs) HasLegConfTrsyBook() bool {
|
|
return m.Has(tag.LegConfTrsyBook)
|
|
}
|
|
|
|
// HasLegDealerInternalNote returns true if LegDealerInternalNote is present, Tag 23104.
|
|
func (m NoLegs) HasLegDealerInternalNote() bool {
|
|
return m.Has(tag.LegDealerInternalNote)
|
|
}
|
|
|
|
// HasLegNoHedge returns true if LegNoHedge is present, Tag 23105.
|
|
func (m NoLegs) HasLegNoHedge() bool {
|
|
return m.Has(tag.LegNoHedge)
|
|
}
|
|
|
|
// HasLegDealerInternalNote2 returns true if LegDealerInternalNote2 is present, Tag 23106.
|
|
func (m NoLegs) HasLegDealerInternalNote2() bool {
|
|
return m.Has(tag.LegDealerInternalNote2)
|
|
}
|
|
|
|
// HasLegTradeAxeIndicator returns true if LegTradeAxeIndicator is present, Tag 20234.
|
|
func (m NoLegs) HasLegTradeAxeIndicator() bool {
|
|
return m.Has(tag.LegTradeAxeIndicator)
|
|
}
|
|
|
|
// HasLegOutrightPrice returns true if LegOutrightPrice is present, Tag 20249.
|
|
func (m NoLegs) HasLegOutrightPrice() bool {
|
|
return m.Has(tag.LegOutrightPrice)
|
|
}
|
|
|
|
// HasLegYield returns true if LegYield is present, Tag 20178.
|
|
func (m NoLegs) HasLegYield() bool {
|
|
return m.Has(tag.LegYield)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// HasLegExecutionFeeMarkup returns true if LegExecutionFeeMarkup is present, Tag 20061.
|
|
func (m NoLegs) HasLegExecutionFeeMarkup() bool {
|
|
return m.Has(tag.LegExecutionFeeMarkup)
|
|
}
|
|
|
|
// HasLegExecutionFeeAmount returns true if LegExecutionFeeAmount is present, Tag 20063.
|
|
func (m NoLegs) HasLegExecutionFeeAmount() bool {
|
|
return m.Has(tag.LegExecutionFeeAmount)
|
|
}
|
|
|
|
// HasTradingSystemID returns true if TradingSystemID is present, Tag 6731.
|
|
func (m NoLegs) HasTradingSystemID() bool {
|
|
return m.Has(tag.TradingSystemID)
|
|
}
|
|
|
|
// HasLegFxRate returns true if LegFxRate is present, Tag 22644.
|
|
func (m NoLegs) HasLegFxRate() bool {
|
|
return m.Has(tag.LegFxRate)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// HasLegOutstandingAmount returns true if LegOutstandingAmount is present, Tag 20131.
|
|
func (m NoLegs) HasLegOutstandingAmount() bool {
|
|
return m.Has(tag.LegOutstandingAmount)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// HasLegBenchmarkSymbolSfx returns true if LegBenchmarkSymbolSfx is present, Tag 20144.
|
|
func (m NoLegs) HasLegBenchmarkSymbolSfx() bool {
|
|
return m.Has(tag.LegBenchmarkSymbolSfx)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// HasLegIndustryCode returns true if LegIndustryCode is present, Tag 22567.
|
|
func (m NoLegs) HasLegIndustryCode() bool {
|
|
return m.Has(tag.LegIndustryCode)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
|
|
// HasNoRegulatoryTradeIDs returns true if NoRegulatoryTradeIDs is present, Tag 1907.
|
|
func (m NoLegs) HasNoRegulatoryTradeIDs() bool {
|
|
return m.Has(tag.NoRegulatoryTradeIDs)
|
|
}
|
|
|
|
// 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)}
|
|
}
|
|
|
|
// NoRegulatoryTradeIDs is a repeating group element, Tag 1907.
|
|
type NoRegulatoryTradeIDs struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetRegulatoryTradeID sets RegulatoryTradeID, Tag 1903.
|
|
func (m NoRegulatoryTradeIDs) SetRegulatoryTradeID(v string) {
|
|
m.Set(field.NewRegulatoryTradeID(v))
|
|
}
|
|
|
|
// SetRegulatoryTradeIDType sets RegulatoryTradeIDType, Tag 1906.
|
|
func (m NoRegulatoryTradeIDs) SetRegulatoryTradeIDType(v string) {
|
|
m.Set(field.NewRegulatoryTradeIDType(v))
|
|
}
|
|
|
|
// GetRegulatoryTradeID gets RegulatoryTradeID, Tag 1903.
|
|
func (m NoRegulatoryTradeIDs) GetRegulatoryTradeID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.RegulatoryTradeIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRegulatoryTradeIDType gets RegulatoryTradeIDType, Tag 1906.
|
|
func (m NoRegulatoryTradeIDs) GetRegulatoryTradeIDType() (v string, err quickfix.MessageRejectError) {
|
|
var f field.RegulatoryTradeIDTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasRegulatoryTradeID returns true if RegulatoryTradeID is present, Tag 1903.
|
|
func (m NoRegulatoryTradeIDs) HasRegulatoryTradeID() bool {
|
|
return m.Has(tag.RegulatoryTradeID)
|
|
}
|
|
|
|
// HasRegulatoryTradeIDType returns true if RegulatoryTradeIDType is present, Tag 1906.
|
|
func (m NoRegulatoryTradeIDs) HasRegulatoryTradeIDType() bool {
|
|
return m.Has(tag.RegulatoryTradeIDType)
|
|
}
|
|
|
|
// NoRegulatoryTradeIDsRepeatingGroup is a repeating group, Tag 1907.
|
|
type NoRegulatoryTradeIDsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoRegulatoryTradeIDsRepeatingGroup returns an initialized, NoRegulatoryTradeIDsRepeatingGroup.
|
|
func NewNoRegulatoryTradeIDsRepeatingGroup() NoRegulatoryTradeIDsRepeatingGroup {
|
|
return NoRegulatoryTradeIDsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoRegulatoryTradeIDs,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.RegulatoryTradeID),
|
|
quickfix.GroupElement(tag.RegulatoryTradeIDType),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoRegulatoryTradeIDs to this group.
|
|
func (m NoRegulatoryTradeIDsRepeatingGroup) Add() NoRegulatoryTradeIDs {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoRegulatoryTradeIDs{g}
|
|
}
|
|
|
|
// Get returns the ith NoRegulatoryTradeIDs in the NoRegulatoryTradeIDsRepeatinGroup.
|
|
func (m NoRegulatoryTradeIDsRepeatingGroup) Get(i int) NoRegulatoryTradeIDs {
|
|
return NoRegulatoryTradeIDs{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),
|
|
NewNoLegStipulationsRepeatingGroup(),
|
|
NewNoNestedPartyIDsRepeatingGroup(),
|
|
quickfix.GroupElement(tag.LegPositionEffect),
|
|
quickfix.GroupElement(tag.LegCoveredOrUncovered),
|
|
quickfix.GroupElement(tag.LegRefID),
|
|
quickfix.GroupElement(tag.LegPriceType),
|
|
quickfix.GroupElement(tag.LegSettlType),
|
|
quickfix.GroupElement(tag.LegSettlDate),
|
|
quickfix.GroupElement(tag.LegLastPx),
|
|
quickfix.GroupElement(tag.TradeLegRefID),
|
|
quickfix.GroupElement(tag.LegGrossTradeAmt),
|
|
quickfix.GroupElement(tag.LegAccruedInterestAmt),
|
|
quickfix.GroupElement(tag.LegNetMoney),
|
|
quickfix.GroupElement(tag.LegNetPresentValue),
|
|
quickfix.GroupElement(tag.LegUseDealerBenchmark),
|
|
quickfix.GroupElement(tag.LegConfCoriBook),
|
|
quickfix.GroupElement(tag.LegConfTrsyBook),
|
|
quickfix.GroupElement(tag.LegDealerInternalNote),
|
|
quickfix.GroupElement(tag.LegNoHedge),
|
|
quickfix.GroupElement(tag.LegDealerInternalNote2),
|
|
quickfix.GroupElement(tag.LegTradeAxeIndicator),
|
|
quickfix.GroupElement(tag.LegOutrightPrice),
|
|
quickfix.GroupElement(tag.LegYield),
|
|
quickfix.GroupElement(tag.LegExecutionFeeSchedule),
|
|
quickfix.GroupElement(tag.LegExecutionFeeType),
|
|
quickfix.GroupElement(tag.LegExecutionFeeMarkup),
|
|
quickfix.GroupElement(tag.LegExecutionFeeAmount),
|
|
quickfix.GroupElement(tag.TradingSystemID),
|
|
quickfix.GroupElement(tag.LegFxRate),
|
|
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.LegEndDateBusDayAdj),
|
|
quickfix.GroupElement(tag.LegOnTheRunValue),
|
|
quickfix.GroupElement(tag.LegReopeningValue),
|
|
quickfix.GroupElement(tag.LegOutstandingAmount),
|
|
quickfix.GroupElement(tag.LegLeadManagers),
|
|
NewNoLegCreditRatingRepeatingGroup(),
|
|
quickfix.GroupElement(tag.LegNoCalcProvided),
|
|
quickfix.GroupElement(tag.LegBenchmarkSecurityID),
|
|
quickfix.GroupElement(tag.LegBenchmarkSecurityIDSource),
|
|
quickfix.GroupElement(tag.LegBenchmarkSymbolSfx),
|
|
quickfix.GroupElement(tag.LegPricingTier),
|
|
quickfix.GroupElement(tag.LegFirstCouponPaymentDate),
|
|
quickfix.GroupElement(tag.LegNextCouponRate),
|
|
quickfix.GroupElement(tag.LegYieldType),
|
|
quickfix.GroupElement(tag.LegIndustryCode),
|
|
quickfix.GroupElement(tag.LegCallDate),
|
|
quickfix.GroupElement(tag.LegCallType),
|
|
quickfix.GroupElement(tag.LegCallPrice),
|
|
quickfix.GroupElement(tag.LegSettlCurrency),
|
|
quickfix.GroupElement(tag.LegMarketSegment),
|
|
quickfix.GroupElement(tag.LegRegulatoryType),
|
|
quickfix.GroupElement(tag.LegOnMTF),
|
|
quickfix.GroupElement(tag.LegClientTradingCapacity),
|
|
quickfix.GroupElement(tag.LegMiFIDMIC),
|
|
NewNoRegulatoryTradeIDsRepeatingGroup(),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// 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)}
|
|
}
|
|
|
|
// 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)}
|
|
}
|
|
|
|
// 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)}
|
|
}
|
|
|
|
// NoRootPartyIDs is a repeating group element, Tag 1116.
|
|
type NoRootPartyIDs struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetRootPartyID sets RootPartyID, Tag 1117.
|
|
func (m NoRootPartyIDs) SetRootPartyID(v string) {
|
|
m.Set(field.NewRootPartyID(v))
|
|
}
|
|
|
|
// SetRootPartyIDSource sets RootPartyIDSource, Tag 1118.
|
|
func (m NoRootPartyIDs) SetRootPartyIDSource(v string) {
|
|
m.Set(field.NewRootPartyIDSource(v))
|
|
}
|
|
|
|
// SetRootPartyRole sets RootPartyRole, Tag 1119.
|
|
func (m NoRootPartyIDs) SetRootPartyRole(v int) {
|
|
m.Set(field.NewRootPartyRole(v))
|
|
}
|
|
|
|
// SetNoRootPartySubIDs sets NoRootPartySubIDs, Tag 1120.
|
|
func (m NoRootPartyIDs) SetNoRootPartySubIDs(f NoRootPartySubIDsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// GetRootPartyID gets RootPartyID, Tag 1117.
|
|
func (m NoRootPartyIDs) GetRootPartyID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.RootPartyIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRootPartyIDSource gets RootPartyIDSource, Tag 1118.
|
|
func (m NoRootPartyIDs) GetRootPartyIDSource() (v string, err quickfix.MessageRejectError) {
|
|
var f field.RootPartyIDSourceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRootPartyRole gets RootPartyRole, Tag 1119.
|
|
func (m NoRootPartyIDs) GetRootPartyRole() (v int, err quickfix.MessageRejectError) {
|
|
var f field.RootPartyRoleField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoRootPartySubIDs gets NoRootPartySubIDs, Tag 1120.
|
|
func (m NoRootPartyIDs) GetNoRootPartySubIDs() (NoRootPartySubIDsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoRootPartySubIDsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// HasRootPartyID returns true if RootPartyID is present, Tag 1117.
|
|
func (m NoRootPartyIDs) HasRootPartyID() bool {
|
|
return m.Has(tag.RootPartyID)
|
|
}
|
|
|
|
// HasRootPartyIDSource returns true if RootPartyIDSource is present, Tag 1118.
|
|
func (m NoRootPartyIDs) HasRootPartyIDSource() bool {
|
|
return m.Has(tag.RootPartyIDSource)
|
|
}
|
|
|
|
// HasRootPartyRole returns true if RootPartyRole is present, Tag 1119.
|
|
func (m NoRootPartyIDs) HasRootPartyRole() bool {
|
|
return m.Has(tag.RootPartyRole)
|
|
}
|
|
|
|
// HasNoRootPartySubIDs returns true if NoRootPartySubIDs is present, Tag 1120.
|
|
func (m NoRootPartyIDs) HasNoRootPartySubIDs() bool {
|
|
return m.Has(tag.NoRootPartySubIDs)
|
|
}
|
|
|
|
// NoRootPartySubIDs is a repeating group element, Tag 1120.
|
|
type NoRootPartySubIDs struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetRootPartySubID sets RootPartySubID, Tag 1121.
|
|
func (m NoRootPartySubIDs) SetRootPartySubID(v string) {
|
|
m.Set(field.NewRootPartySubID(v))
|
|
}
|
|
|
|
// SetRootPartySubIDType sets RootPartySubIDType, Tag 1122.
|
|
func (m NoRootPartySubIDs) SetRootPartySubIDType(v int) {
|
|
m.Set(field.NewRootPartySubIDType(v))
|
|
}
|
|
|
|
// GetRootPartySubID gets RootPartySubID, Tag 1121.
|
|
func (m NoRootPartySubIDs) GetRootPartySubID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.RootPartySubIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRootPartySubIDType gets RootPartySubIDType, Tag 1122.
|
|
func (m NoRootPartySubIDs) GetRootPartySubIDType() (v int, err quickfix.MessageRejectError) {
|
|
var f field.RootPartySubIDTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasRootPartySubID returns true if RootPartySubID is present, Tag 1121.
|
|
func (m NoRootPartySubIDs) HasRootPartySubID() bool {
|
|
return m.Has(tag.RootPartySubID)
|
|
}
|
|
|
|
// HasRootPartySubIDType returns true if RootPartySubIDType is present, Tag 1122.
|
|
func (m NoRootPartySubIDs) HasRootPartySubIDType() bool {
|
|
return m.Has(tag.RootPartySubIDType)
|
|
}
|
|
|
|
// NoRootPartySubIDsRepeatingGroup is a repeating group, Tag 1120.
|
|
type NoRootPartySubIDsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoRootPartySubIDsRepeatingGroup returns an initialized, NoRootPartySubIDsRepeatingGroup.
|
|
func NewNoRootPartySubIDsRepeatingGroup() NoRootPartySubIDsRepeatingGroup {
|
|
return NoRootPartySubIDsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoRootPartySubIDs,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.RootPartySubID),
|
|
quickfix.GroupElement(tag.RootPartySubIDType),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoRootPartySubIDs to this group.
|
|
func (m NoRootPartySubIDsRepeatingGroup) Add() NoRootPartySubIDs {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoRootPartySubIDs{g}
|
|
}
|
|
|
|
// Get returns the ith NoRootPartySubIDs in the NoRootPartySubIDsRepeatinGroup.
|
|
func (m NoRootPartySubIDsRepeatingGroup) Get(i int) NoRootPartySubIDs {
|
|
return NoRootPartySubIDs{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoRootPartyIDsRepeatingGroup is a repeating group, Tag 1116.
|
|
type NoRootPartyIDsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoRootPartyIDsRepeatingGroup returns an initialized, NoRootPartyIDsRepeatingGroup.
|
|
func NewNoRootPartyIDsRepeatingGroup() NoRootPartyIDsRepeatingGroup {
|
|
return NoRootPartyIDsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoRootPartyIDs,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.RootPartyID),
|
|
quickfix.GroupElement(tag.RootPartyIDSource),
|
|
quickfix.GroupElement(tag.RootPartyRole),
|
|
NewNoRootPartySubIDsRepeatingGroup(),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoRootPartyIDs to this group.
|
|
func (m NoRootPartyIDsRepeatingGroup) Add() NoRootPartyIDs {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoRootPartyIDs{g}
|
|
}
|
|
|
|
// Get returns the ith NoRootPartyIDs in the NoRootPartyIDsRepeatinGroup.
|
|
func (m NoRootPartyIDsRepeatingGroup) Get(i int) NoRootPartyIDs {
|
|
return NoRootPartyIDs{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)}
|
|
}
|
|
|
|
// 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)}
|
|
}
|