3560 lines
107 KiB
Go
3560 lines
107 KiB
Go
// Code generated by quickfix. DO NOT EDIT.
|
|
package settlementobligationreport
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/shopspring/decimal"
|
|
|
|
"quantex.com/qfixpt/quickfix"
|
|
"quantex.com/qfixpt/quickfix/gen/enum"
|
|
"quantex.com/qfixpt/quickfix/gen/field"
|
|
"quantex.com/qfixpt/quickfix/gen/fixt11"
|
|
"quantex.com/qfixpt/quickfix/gen/tag"
|
|
)
|
|
|
|
// SettlementObligationReport is the fix50sp2 SettlementObligationReport type, MsgType = BQ.
|
|
type SettlementObligationReport struct {
|
|
fixt11.Header
|
|
*quickfix.Body
|
|
fixt11.Trailer
|
|
Message *quickfix.Message
|
|
}
|
|
|
|
// FromMessage creates a SettlementObligationReport from a quickfix.Message instance.
|
|
func FromMessage(m *quickfix.Message) SettlementObligationReport {
|
|
return SettlementObligationReport{
|
|
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 SettlementObligationReport) ToMessage() *quickfix.Message {
|
|
return m.Message
|
|
}
|
|
|
|
// New returns a SettlementObligationReport initialized with the required fields for SettlementObligationReport.
|
|
func New(settlobligmsgid field.SettlObligMsgIDField, settlobligmode field.SettlObligModeField) (m SettlementObligationReport) {
|
|
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("BQ"))
|
|
m.Set(settlobligmsgid)
|
|
m.Set(settlobligmode)
|
|
|
|
return
|
|
}
|
|
|
|
// A RouteOut is the callback type that should be implemented for routing Message.
|
|
type RouteOut func(msg SettlementObligationReport, 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", "BQ", r
|
|
}
|
|
|
|
// SetText sets Text, Tag 58.
|
|
func (m SettlementObligationReport) SetText(v string) {
|
|
m.Set(field.NewText(v))
|
|
}
|
|
|
|
// SetTransactTime sets TransactTime, Tag 60.
|
|
func (m SettlementObligationReport) SetTransactTime(v time.Time) {
|
|
m.Set(field.NewTransactTime(v))
|
|
}
|
|
|
|
// SetEncodedTextLen sets EncodedTextLen, Tag 354.
|
|
func (m SettlementObligationReport) SetEncodedTextLen(v int) {
|
|
m.Set(field.NewEncodedTextLen(v))
|
|
}
|
|
|
|
// SetEncodedText sets EncodedText, Tag 355.
|
|
func (m SettlementObligationReport) SetEncodedText(v string) {
|
|
m.Set(field.NewEncodedText(v))
|
|
}
|
|
|
|
// SetClearingBusinessDate sets ClearingBusinessDate, Tag 715.
|
|
func (m SettlementObligationReport) SetClearingBusinessDate(v string) {
|
|
m.Set(field.NewClearingBusinessDate(v))
|
|
}
|
|
|
|
// SetSettlementCycleNo sets SettlementCycleNo, Tag 1153.
|
|
func (m SettlementObligationReport) SetSettlementCycleNo(v int) {
|
|
m.Set(field.NewSettlementCycleNo(v))
|
|
}
|
|
|
|
// SetSettlObligMode sets SettlObligMode, Tag 1159.
|
|
func (m SettlementObligationReport) SetSettlObligMode(v enum.SettlObligMode) {
|
|
m.Set(field.NewSettlObligMode(v))
|
|
}
|
|
|
|
// SetSettlObligMsgID sets SettlObligMsgID, Tag 1160.
|
|
func (m SettlementObligationReport) SetSettlObligMsgID(v string) {
|
|
m.Set(field.NewSettlObligMsgID(v))
|
|
}
|
|
|
|
// SetNoSettlOblig sets NoSettlOblig, Tag 1165.
|
|
func (m SettlementObligationReport) SetNoSettlOblig(f NoSettlObligRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetApplID sets ApplID, Tag 1180.
|
|
func (m SettlementObligationReport) SetApplID(v string) {
|
|
m.Set(field.NewApplID(v))
|
|
}
|
|
|
|
// SetApplSeqNum sets ApplSeqNum, Tag 1181.
|
|
func (m SettlementObligationReport) SetApplSeqNum(v int) {
|
|
m.Set(field.NewApplSeqNum(v))
|
|
}
|
|
|
|
// SetApplLastSeqNum sets ApplLastSeqNum, Tag 1350.
|
|
func (m SettlementObligationReport) SetApplLastSeqNum(v int) {
|
|
m.Set(field.NewApplLastSeqNum(v))
|
|
}
|
|
|
|
// SetApplResendFlag sets ApplResendFlag, Tag 1352.
|
|
func (m SettlementObligationReport) SetApplResendFlag(v bool) {
|
|
m.Set(field.NewApplResendFlag(v))
|
|
}
|
|
|
|
// GetText gets Text, Tag 58.
|
|
func (m SettlementObligationReport) GetText() (v string, err quickfix.MessageRejectError) {
|
|
var f field.TextField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTransactTime gets TransactTime, Tag 60.
|
|
func (m SettlementObligationReport) GetTransactTime() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.TransactTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEncodedTextLen gets EncodedTextLen, Tag 354.
|
|
func (m SettlementObligationReport) 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 SettlementObligationReport) GetEncodedText() (v string, err quickfix.MessageRejectError) {
|
|
var f field.EncodedTextField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetClearingBusinessDate gets ClearingBusinessDate, Tag 715.
|
|
func (m SettlementObligationReport) GetClearingBusinessDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ClearingBusinessDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlementCycleNo gets SettlementCycleNo, Tag 1153.
|
|
func (m SettlementObligationReport) GetSettlementCycleNo() (v int, err quickfix.MessageRejectError) {
|
|
var f field.SettlementCycleNoField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlObligMode gets SettlObligMode, Tag 1159.
|
|
func (m SettlementObligationReport) GetSettlObligMode() (v enum.SettlObligMode, err quickfix.MessageRejectError) {
|
|
var f field.SettlObligModeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlObligMsgID gets SettlObligMsgID, Tag 1160.
|
|
func (m SettlementObligationReport) GetSettlObligMsgID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettlObligMsgIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoSettlOblig gets NoSettlOblig, Tag 1165.
|
|
func (m SettlementObligationReport) GetNoSettlOblig() (NoSettlObligRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoSettlObligRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetApplID gets ApplID, Tag 1180.
|
|
func (m SettlementObligationReport) GetApplID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ApplIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetApplSeqNum gets ApplSeqNum, Tag 1181.
|
|
func (m SettlementObligationReport) GetApplSeqNum() (v int, err quickfix.MessageRejectError) {
|
|
var f field.ApplSeqNumField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetApplLastSeqNum gets ApplLastSeqNum, Tag 1350.
|
|
func (m SettlementObligationReport) GetApplLastSeqNum() (v int, err quickfix.MessageRejectError) {
|
|
var f field.ApplLastSeqNumField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetApplResendFlag gets ApplResendFlag, Tag 1352.
|
|
func (m SettlementObligationReport) GetApplResendFlag() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.ApplResendFlagField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasText returns true if Text is present, Tag 58.
|
|
func (m SettlementObligationReport) HasText() bool {
|
|
return m.Has(tag.Text)
|
|
}
|
|
|
|
// HasTransactTime returns true if TransactTime is present, Tag 60.
|
|
func (m SettlementObligationReport) HasTransactTime() bool {
|
|
return m.Has(tag.TransactTime)
|
|
}
|
|
|
|
// HasEncodedTextLen returns true if EncodedTextLen is present, Tag 354.
|
|
func (m SettlementObligationReport) HasEncodedTextLen() bool {
|
|
return m.Has(tag.EncodedTextLen)
|
|
}
|
|
|
|
// HasEncodedText returns true if EncodedText is present, Tag 355.
|
|
func (m SettlementObligationReport) HasEncodedText() bool {
|
|
return m.Has(tag.EncodedText)
|
|
}
|
|
|
|
// HasClearingBusinessDate returns true if ClearingBusinessDate is present, Tag 715.
|
|
func (m SettlementObligationReport) HasClearingBusinessDate() bool {
|
|
return m.Has(tag.ClearingBusinessDate)
|
|
}
|
|
|
|
// HasSettlementCycleNo returns true if SettlementCycleNo is present, Tag 1153.
|
|
func (m SettlementObligationReport) HasSettlementCycleNo() bool {
|
|
return m.Has(tag.SettlementCycleNo)
|
|
}
|
|
|
|
// HasSettlObligMode returns true if SettlObligMode is present, Tag 1159.
|
|
func (m SettlementObligationReport) HasSettlObligMode() bool {
|
|
return m.Has(tag.SettlObligMode)
|
|
}
|
|
|
|
// HasSettlObligMsgID returns true if SettlObligMsgID is present, Tag 1160.
|
|
func (m SettlementObligationReport) HasSettlObligMsgID() bool {
|
|
return m.Has(tag.SettlObligMsgID)
|
|
}
|
|
|
|
// HasNoSettlOblig returns true if NoSettlOblig is present, Tag 1165.
|
|
func (m SettlementObligationReport) HasNoSettlOblig() bool {
|
|
return m.Has(tag.NoSettlOblig)
|
|
}
|
|
|
|
// HasApplID returns true if ApplID is present, Tag 1180.
|
|
func (m SettlementObligationReport) HasApplID() bool {
|
|
return m.Has(tag.ApplID)
|
|
}
|
|
|
|
// HasApplSeqNum returns true if ApplSeqNum is present, Tag 1181.
|
|
func (m SettlementObligationReport) HasApplSeqNum() bool {
|
|
return m.Has(tag.ApplSeqNum)
|
|
}
|
|
|
|
// HasApplLastSeqNum returns true if ApplLastSeqNum is present, Tag 1350.
|
|
func (m SettlementObligationReport) HasApplLastSeqNum() bool {
|
|
return m.Has(tag.ApplLastSeqNum)
|
|
}
|
|
|
|
// HasApplResendFlag returns true if ApplResendFlag is present, Tag 1352.
|
|
func (m SettlementObligationReport) HasApplResendFlag() bool {
|
|
return m.Has(tag.ApplResendFlag)
|
|
}
|
|
|
|
// NoSettlOblig is a repeating group element, Tag 1165.
|
|
type NoSettlOblig struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetNetGrossInd sets NetGrossInd, Tag 430.
|
|
func (m NoSettlOblig) SetNetGrossInd(v enum.NetGrossInd) {
|
|
m.Set(field.NewNetGrossInd(v))
|
|
}
|
|
|
|
// SetSettlObligID sets SettlObligID, Tag 1161.
|
|
func (m NoSettlOblig) SetSettlObligID(v string) {
|
|
m.Set(field.NewSettlObligID(v))
|
|
}
|
|
|
|
// SetSettlObligTransType sets SettlObligTransType, Tag 1162.
|
|
func (m NoSettlOblig) SetSettlObligTransType(v enum.SettlObligTransType) {
|
|
m.Set(field.NewSettlObligTransType(v))
|
|
}
|
|
|
|
// SetSettlObligRefID sets SettlObligRefID, Tag 1163.
|
|
func (m NoSettlOblig) SetSettlObligRefID(v string) {
|
|
m.Set(field.NewSettlObligRefID(v))
|
|
}
|
|
|
|
// SetCcyAmt sets CcyAmt, Tag 1157.
|
|
func (m NoSettlOblig) SetCcyAmt(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewCcyAmt(value, scale))
|
|
}
|
|
|
|
// SetSettlCurrAmt sets SettlCurrAmt, Tag 119.
|
|
func (m NoSettlOblig) SetSettlCurrAmt(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewSettlCurrAmt(value, scale))
|
|
}
|
|
|
|
// SetCurrency sets Currency, Tag 15.
|
|
func (m NoSettlOblig) SetCurrency(v string) {
|
|
m.Set(field.NewCurrency(v))
|
|
}
|
|
|
|
// SetSettlCurrency sets SettlCurrency, Tag 120.
|
|
func (m NoSettlOblig) SetSettlCurrency(v string) {
|
|
m.Set(field.NewSettlCurrency(v))
|
|
}
|
|
|
|
// SetSettlCurrFxRate sets SettlCurrFxRate, Tag 155.
|
|
func (m NoSettlOblig) SetSettlCurrFxRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewSettlCurrFxRate(value, scale))
|
|
}
|
|
|
|
// SetSettlDate sets SettlDate, Tag 64.
|
|
func (m NoSettlOblig) SetSettlDate(v string) {
|
|
m.Set(field.NewSettlDate(v))
|
|
}
|
|
|
|
// SetSymbol sets Symbol, Tag 55.
|
|
func (m NoSettlOblig) SetSymbol(v string) {
|
|
m.Set(field.NewSymbol(v))
|
|
}
|
|
|
|
// SetSymbolSfx sets SymbolSfx, Tag 65.
|
|
func (m NoSettlOblig) SetSymbolSfx(v enum.SymbolSfx) {
|
|
m.Set(field.NewSymbolSfx(v))
|
|
}
|
|
|
|
// SetSecurityID sets SecurityID, Tag 48.
|
|
func (m NoSettlOblig) SetSecurityID(v string) {
|
|
m.Set(field.NewSecurityID(v))
|
|
}
|
|
|
|
// SetSecurityIDSource sets SecurityIDSource, Tag 22.
|
|
func (m NoSettlOblig) SetSecurityIDSource(v enum.SecurityIDSource) {
|
|
m.Set(field.NewSecurityIDSource(v))
|
|
}
|
|
|
|
// SetNoSecurityAltID sets NoSecurityAltID, Tag 454.
|
|
func (m NoSettlOblig) SetNoSecurityAltID(f NoSecurityAltIDRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetProduct sets Product, Tag 460.
|
|
func (m NoSettlOblig) SetProduct(v enum.Product) {
|
|
m.Set(field.NewProduct(v))
|
|
}
|
|
|
|
// SetCFICode sets CFICode, Tag 461.
|
|
func (m NoSettlOblig) SetCFICode(v string) {
|
|
m.Set(field.NewCFICode(v))
|
|
}
|
|
|
|
// SetSecurityType sets SecurityType, Tag 167.
|
|
func (m NoSettlOblig) SetSecurityType(v enum.SecurityType) {
|
|
m.Set(field.NewSecurityType(v))
|
|
}
|
|
|
|
// SetSecuritySubType sets SecuritySubType, Tag 762.
|
|
func (m NoSettlOblig) SetSecuritySubType(v string) {
|
|
m.Set(field.NewSecuritySubType(v))
|
|
}
|
|
|
|
// SetMaturityMonthYear sets MaturityMonthYear, Tag 200.
|
|
func (m NoSettlOblig) SetMaturityMonthYear(v string) {
|
|
m.Set(field.NewMaturityMonthYear(v))
|
|
}
|
|
|
|
// SetMaturityDate sets MaturityDate, Tag 541.
|
|
func (m NoSettlOblig) SetMaturityDate(v string) {
|
|
m.Set(field.NewMaturityDate(v))
|
|
}
|
|
|
|
// SetCouponPaymentDate sets CouponPaymentDate, Tag 224.
|
|
func (m NoSettlOblig) SetCouponPaymentDate(v string) {
|
|
m.Set(field.NewCouponPaymentDate(v))
|
|
}
|
|
|
|
// SetIssueDate sets IssueDate, Tag 225.
|
|
func (m NoSettlOblig) SetIssueDate(v string) {
|
|
m.Set(field.NewIssueDate(v))
|
|
}
|
|
|
|
// SetRepoCollateralSecurityType sets RepoCollateralSecurityType, Tag 239.
|
|
func (m NoSettlOblig) SetRepoCollateralSecurityType(v int) {
|
|
m.Set(field.NewRepoCollateralSecurityType(v))
|
|
}
|
|
|
|
// SetRepurchaseTerm sets RepurchaseTerm, Tag 226.
|
|
func (m NoSettlOblig) SetRepurchaseTerm(v int) {
|
|
m.Set(field.NewRepurchaseTerm(v))
|
|
}
|
|
|
|
// SetRepurchaseRate sets RepurchaseRate, Tag 227.
|
|
func (m NoSettlOblig) SetRepurchaseRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewRepurchaseRate(value, scale))
|
|
}
|
|
|
|
// SetFactor sets Factor, Tag 228.
|
|
func (m NoSettlOblig) SetFactor(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewFactor(value, scale))
|
|
}
|
|
|
|
// SetCreditRating sets CreditRating, Tag 255.
|
|
func (m NoSettlOblig) SetCreditRating(v string) {
|
|
m.Set(field.NewCreditRating(v))
|
|
}
|
|
|
|
// SetInstrRegistry sets InstrRegistry, Tag 543.
|
|
func (m NoSettlOblig) SetInstrRegistry(v enum.InstrRegistry) {
|
|
m.Set(field.NewInstrRegistry(v))
|
|
}
|
|
|
|
// SetCountryOfIssue sets CountryOfIssue, Tag 470.
|
|
func (m NoSettlOblig) SetCountryOfIssue(v string) {
|
|
m.Set(field.NewCountryOfIssue(v))
|
|
}
|
|
|
|
// SetStateOrProvinceOfIssue sets StateOrProvinceOfIssue, Tag 471.
|
|
func (m NoSettlOblig) SetStateOrProvinceOfIssue(v string) {
|
|
m.Set(field.NewStateOrProvinceOfIssue(v))
|
|
}
|
|
|
|
// SetLocaleOfIssue sets LocaleOfIssue, Tag 472.
|
|
func (m NoSettlOblig) SetLocaleOfIssue(v string) {
|
|
m.Set(field.NewLocaleOfIssue(v))
|
|
}
|
|
|
|
// SetRedemptionDate sets RedemptionDate, Tag 240.
|
|
func (m NoSettlOblig) SetRedemptionDate(v string) {
|
|
m.Set(field.NewRedemptionDate(v))
|
|
}
|
|
|
|
// SetStrikePrice sets StrikePrice, Tag 202.
|
|
func (m NoSettlOblig) SetStrikePrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewStrikePrice(value, scale))
|
|
}
|
|
|
|
// SetStrikeCurrency sets StrikeCurrency, Tag 947.
|
|
func (m NoSettlOblig) SetStrikeCurrency(v string) {
|
|
m.Set(field.NewStrikeCurrency(v))
|
|
}
|
|
|
|
// SetOptAttribute sets OptAttribute, Tag 206.
|
|
func (m NoSettlOblig) SetOptAttribute(v string) {
|
|
m.Set(field.NewOptAttribute(v))
|
|
}
|
|
|
|
// SetContractMultiplier sets ContractMultiplier, Tag 231.
|
|
func (m NoSettlOblig) SetContractMultiplier(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewContractMultiplier(value, scale))
|
|
}
|
|
|
|
// SetCouponRate sets CouponRate, Tag 223.
|
|
func (m NoSettlOblig) SetCouponRate(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewCouponRate(value, scale))
|
|
}
|
|
|
|
// SetSecurityExchange sets SecurityExchange, Tag 207.
|
|
func (m NoSettlOblig) SetSecurityExchange(v string) {
|
|
m.Set(field.NewSecurityExchange(v))
|
|
}
|
|
|
|
// SetIssuer sets Issuer, Tag 106.
|
|
func (m NoSettlOblig) SetIssuer(v string) {
|
|
m.Set(field.NewIssuer(v))
|
|
}
|
|
|
|
// SetEncodedIssuerLen sets EncodedIssuerLen, Tag 348.
|
|
func (m NoSettlOblig) SetEncodedIssuerLen(v int) {
|
|
m.Set(field.NewEncodedIssuerLen(v))
|
|
}
|
|
|
|
// SetEncodedIssuer sets EncodedIssuer, Tag 349.
|
|
func (m NoSettlOblig) SetEncodedIssuer(v string) {
|
|
m.Set(field.NewEncodedIssuer(v))
|
|
}
|
|
|
|
// SetSecurityDesc sets SecurityDesc, Tag 107.
|
|
func (m NoSettlOblig) SetSecurityDesc(v string) {
|
|
m.Set(field.NewSecurityDesc(v))
|
|
}
|
|
|
|
// SetEncodedSecurityDescLen sets EncodedSecurityDescLen, Tag 350.
|
|
func (m NoSettlOblig) SetEncodedSecurityDescLen(v int) {
|
|
m.Set(field.NewEncodedSecurityDescLen(v))
|
|
}
|
|
|
|
// SetEncodedSecurityDesc sets EncodedSecurityDesc, Tag 351.
|
|
func (m NoSettlOblig) SetEncodedSecurityDesc(v string) {
|
|
m.Set(field.NewEncodedSecurityDesc(v))
|
|
}
|
|
|
|
// SetPool sets Pool, Tag 691.
|
|
func (m NoSettlOblig) SetPool(v string) {
|
|
m.Set(field.NewPool(v))
|
|
}
|
|
|
|
// SetContractSettlMonth sets ContractSettlMonth, Tag 667.
|
|
func (m NoSettlOblig) SetContractSettlMonth(v string) {
|
|
m.Set(field.NewContractSettlMonth(v))
|
|
}
|
|
|
|
// SetCPProgram sets CPProgram, Tag 875.
|
|
func (m NoSettlOblig) SetCPProgram(v enum.CPProgram) {
|
|
m.Set(field.NewCPProgram(v))
|
|
}
|
|
|
|
// SetCPRegType sets CPRegType, Tag 876.
|
|
func (m NoSettlOblig) SetCPRegType(v string) {
|
|
m.Set(field.NewCPRegType(v))
|
|
}
|
|
|
|
// SetNoEvents sets NoEvents, Tag 864.
|
|
func (m NoSettlOblig) SetNoEvents(f NoEventsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetDatedDate sets DatedDate, Tag 873.
|
|
func (m NoSettlOblig) SetDatedDate(v string) {
|
|
m.Set(field.NewDatedDate(v))
|
|
}
|
|
|
|
// SetInterestAccrualDate sets InterestAccrualDate, Tag 874.
|
|
func (m NoSettlOblig) SetInterestAccrualDate(v string) {
|
|
m.Set(field.NewInterestAccrualDate(v))
|
|
}
|
|
|
|
// SetSecurityStatus sets SecurityStatus, Tag 965.
|
|
func (m NoSettlOblig) SetSecurityStatus(v enum.SecurityStatus) {
|
|
m.Set(field.NewSecurityStatus(v))
|
|
}
|
|
|
|
// SetSettleOnOpenFlag sets SettleOnOpenFlag, Tag 966.
|
|
func (m NoSettlOblig) SetSettleOnOpenFlag(v string) {
|
|
m.Set(field.NewSettleOnOpenFlag(v))
|
|
}
|
|
|
|
// SetInstrmtAssignmentMethod sets InstrmtAssignmentMethod, Tag 1049.
|
|
func (m NoSettlOblig) SetInstrmtAssignmentMethod(v string) {
|
|
m.Set(field.NewInstrmtAssignmentMethod(v))
|
|
}
|
|
|
|
// SetStrikeMultiplier sets StrikeMultiplier, Tag 967.
|
|
func (m NoSettlOblig) SetStrikeMultiplier(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewStrikeMultiplier(value, scale))
|
|
}
|
|
|
|
// SetStrikeValue sets StrikeValue, Tag 968.
|
|
func (m NoSettlOblig) SetStrikeValue(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewStrikeValue(value, scale))
|
|
}
|
|
|
|
// SetMinPriceIncrement sets MinPriceIncrement, Tag 969.
|
|
func (m NoSettlOblig) SetMinPriceIncrement(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewMinPriceIncrement(value, scale))
|
|
}
|
|
|
|
// SetPositionLimit sets PositionLimit, Tag 970.
|
|
func (m NoSettlOblig) SetPositionLimit(v int) {
|
|
m.Set(field.NewPositionLimit(v))
|
|
}
|
|
|
|
// SetNTPositionLimit sets NTPositionLimit, Tag 971.
|
|
func (m NoSettlOblig) SetNTPositionLimit(v int) {
|
|
m.Set(field.NewNTPositionLimit(v))
|
|
}
|
|
|
|
// SetNoInstrumentParties sets NoInstrumentParties, Tag 1018.
|
|
func (m NoSettlOblig) SetNoInstrumentParties(f NoInstrumentPartiesRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetUnitOfMeasure sets UnitOfMeasure, Tag 996.
|
|
func (m NoSettlOblig) SetUnitOfMeasure(v enum.UnitOfMeasure) {
|
|
m.Set(field.NewUnitOfMeasure(v))
|
|
}
|
|
|
|
// SetTimeUnit sets TimeUnit, Tag 997.
|
|
func (m NoSettlOblig) SetTimeUnit(v enum.TimeUnit) {
|
|
m.Set(field.NewTimeUnit(v))
|
|
}
|
|
|
|
// SetMaturityTime sets MaturityTime, Tag 1079.
|
|
func (m NoSettlOblig) SetMaturityTime(v string) {
|
|
m.Set(field.NewMaturityTime(v))
|
|
}
|
|
|
|
// SetSecurityGroup sets SecurityGroup, Tag 1151.
|
|
func (m NoSettlOblig) SetSecurityGroup(v string) {
|
|
m.Set(field.NewSecurityGroup(v))
|
|
}
|
|
|
|
// SetMinPriceIncrementAmount sets MinPriceIncrementAmount, Tag 1146.
|
|
func (m NoSettlOblig) SetMinPriceIncrementAmount(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewMinPriceIncrementAmount(value, scale))
|
|
}
|
|
|
|
// SetUnitOfMeasureQty sets UnitOfMeasureQty, Tag 1147.
|
|
func (m NoSettlOblig) SetUnitOfMeasureQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewUnitOfMeasureQty(value, scale))
|
|
}
|
|
|
|
// SetSecurityXMLLen sets SecurityXMLLen, Tag 1184.
|
|
func (m NoSettlOblig) SetSecurityXMLLen(v int) {
|
|
m.Set(field.NewSecurityXMLLen(v))
|
|
}
|
|
|
|
// SetSecurityXML sets SecurityXML, Tag 1185.
|
|
func (m NoSettlOblig) SetSecurityXML(v string) {
|
|
m.Set(field.NewSecurityXML(v))
|
|
}
|
|
|
|
// SetSecurityXMLSchema sets SecurityXMLSchema, Tag 1186.
|
|
func (m NoSettlOblig) SetSecurityXMLSchema(v string) {
|
|
m.Set(field.NewSecurityXMLSchema(v))
|
|
}
|
|
|
|
// SetProductComplex sets ProductComplex, Tag 1227.
|
|
func (m NoSettlOblig) SetProductComplex(v string) {
|
|
m.Set(field.NewProductComplex(v))
|
|
}
|
|
|
|
// SetPriceUnitOfMeasure sets PriceUnitOfMeasure, Tag 1191.
|
|
func (m NoSettlOblig) SetPriceUnitOfMeasure(v string) {
|
|
m.Set(field.NewPriceUnitOfMeasure(v))
|
|
}
|
|
|
|
// SetPriceUnitOfMeasureQty sets PriceUnitOfMeasureQty, Tag 1192.
|
|
func (m NoSettlOblig) SetPriceUnitOfMeasureQty(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewPriceUnitOfMeasureQty(value, scale))
|
|
}
|
|
|
|
// SetSettlMethod sets SettlMethod, Tag 1193.
|
|
func (m NoSettlOblig) SetSettlMethod(v enum.SettlMethod) {
|
|
m.Set(field.NewSettlMethod(v))
|
|
}
|
|
|
|
// SetExerciseStyle sets ExerciseStyle, Tag 1194.
|
|
func (m NoSettlOblig) SetExerciseStyle(v enum.ExerciseStyle) {
|
|
m.Set(field.NewExerciseStyle(v))
|
|
}
|
|
|
|
// SetOptPayoutAmount sets OptPayoutAmount, Tag 1195.
|
|
func (m NoSettlOblig) SetOptPayoutAmount(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewOptPayoutAmount(value, scale))
|
|
}
|
|
|
|
// SetPriceQuoteMethod sets PriceQuoteMethod, Tag 1196.
|
|
func (m NoSettlOblig) SetPriceQuoteMethod(v enum.PriceQuoteMethod) {
|
|
m.Set(field.NewPriceQuoteMethod(v))
|
|
}
|
|
|
|
// SetListMethod sets ListMethod, Tag 1198.
|
|
func (m NoSettlOblig) SetListMethod(v enum.ListMethod) {
|
|
m.Set(field.NewListMethod(v))
|
|
}
|
|
|
|
// SetCapPrice sets CapPrice, Tag 1199.
|
|
func (m NoSettlOblig) SetCapPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewCapPrice(value, scale))
|
|
}
|
|
|
|
// SetFloorPrice sets FloorPrice, Tag 1200.
|
|
func (m NoSettlOblig) SetFloorPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewFloorPrice(value, scale))
|
|
}
|
|
|
|
// SetPutOrCall sets PutOrCall, Tag 201.
|
|
func (m NoSettlOblig) SetPutOrCall(v enum.PutOrCall) {
|
|
m.Set(field.NewPutOrCall(v))
|
|
}
|
|
|
|
// SetFlexibleIndicator sets FlexibleIndicator, Tag 1244.
|
|
func (m NoSettlOblig) SetFlexibleIndicator(v bool) {
|
|
m.Set(field.NewFlexibleIndicator(v))
|
|
}
|
|
|
|
// SetFlexProductEligibilityIndicator sets FlexProductEligibilityIndicator, Tag 1242.
|
|
func (m NoSettlOblig) SetFlexProductEligibilityIndicator(v bool) {
|
|
m.Set(field.NewFlexProductEligibilityIndicator(v))
|
|
}
|
|
|
|
// SetValuationMethod sets ValuationMethod, Tag 1197.
|
|
func (m NoSettlOblig) SetValuationMethod(v enum.ValuationMethod) {
|
|
m.Set(field.NewValuationMethod(v))
|
|
}
|
|
|
|
// SetContractMultiplierUnit sets ContractMultiplierUnit, Tag 1435.
|
|
func (m NoSettlOblig) SetContractMultiplierUnit(v enum.ContractMultiplierUnit) {
|
|
m.Set(field.NewContractMultiplierUnit(v))
|
|
}
|
|
|
|
// SetFlowScheduleType sets FlowScheduleType, Tag 1439.
|
|
func (m NoSettlOblig) SetFlowScheduleType(v enum.FlowScheduleType) {
|
|
m.Set(field.NewFlowScheduleType(v))
|
|
}
|
|
|
|
// SetRestructuringType sets RestructuringType, Tag 1449.
|
|
func (m NoSettlOblig) SetRestructuringType(v enum.RestructuringType) {
|
|
m.Set(field.NewRestructuringType(v))
|
|
}
|
|
|
|
// SetSeniority sets Seniority, Tag 1450.
|
|
func (m NoSettlOblig) SetSeniority(v enum.Seniority) {
|
|
m.Set(field.NewSeniority(v))
|
|
}
|
|
|
|
// SetNotionalPercentageOutstanding sets NotionalPercentageOutstanding, Tag 1451.
|
|
func (m NoSettlOblig) SetNotionalPercentageOutstanding(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewNotionalPercentageOutstanding(value, scale))
|
|
}
|
|
|
|
// SetOriginalNotionalPercentageOutstanding sets OriginalNotionalPercentageOutstanding, Tag 1452.
|
|
func (m NoSettlOblig) SetOriginalNotionalPercentageOutstanding(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewOriginalNotionalPercentageOutstanding(value, scale))
|
|
}
|
|
|
|
// SetAttachmentPoint sets AttachmentPoint, Tag 1457.
|
|
func (m NoSettlOblig) SetAttachmentPoint(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewAttachmentPoint(value, scale))
|
|
}
|
|
|
|
// SetDetachmentPoint sets DetachmentPoint, Tag 1458.
|
|
func (m NoSettlOblig) SetDetachmentPoint(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewDetachmentPoint(value, scale))
|
|
}
|
|
|
|
// SetStrikePriceDeterminationMethod sets StrikePriceDeterminationMethod, Tag 1478.
|
|
func (m NoSettlOblig) SetStrikePriceDeterminationMethod(v enum.StrikePriceDeterminationMethod) {
|
|
m.Set(field.NewStrikePriceDeterminationMethod(v))
|
|
}
|
|
|
|
// SetStrikePriceBoundaryMethod sets StrikePriceBoundaryMethod, Tag 1479.
|
|
func (m NoSettlOblig) SetStrikePriceBoundaryMethod(v enum.StrikePriceBoundaryMethod) {
|
|
m.Set(field.NewStrikePriceBoundaryMethod(v))
|
|
}
|
|
|
|
// SetStrikePriceBoundaryPrecision sets StrikePriceBoundaryPrecision, Tag 1480.
|
|
func (m NoSettlOblig) SetStrikePriceBoundaryPrecision(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewStrikePriceBoundaryPrecision(value, scale))
|
|
}
|
|
|
|
// SetUnderlyingPriceDeterminationMethod sets UnderlyingPriceDeterminationMethod, Tag 1481.
|
|
func (m NoSettlOblig) SetUnderlyingPriceDeterminationMethod(v enum.UnderlyingPriceDeterminationMethod) {
|
|
m.Set(field.NewUnderlyingPriceDeterminationMethod(v))
|
|
}
|
|
|
|
// SetOptPayoutType sets OptPayoutType, Tag 1482.
|
|
func (m NoSettlOblig) SetOptPayoutType(v enum.OptPayoutType) {
|
|
m.Set(field.NewOptPayoutType(v))
|
|
}
|
|
|
|
// SetNoComplexEvents sets NoComplexEvents, Tag 1483.
|
|
func (m NoSettlOblig) SetNoComplexEvents(f NoComplexEventsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetNoPartyIDs sets NoPartyIDs, Tag 453.
|
|
func (m NoSettlOblig) SetNoPartyIDs(f NoPartyIDsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// SetEffectiveTime sets EffectiveTime, Tag 168.
|
|
func (m NoSettlOblig) SetEffectiveTime(v time.Time) {
|
|
m.Set(field.NewEffectiveTime(v))
|
|
}
|
|
|
|
// SetExpireTime sets ExpireTime, Tag 126.
|
|
func (m NoSettlOblig) SetExpireTime(v time.Time) {
|
|
m.Set(field.NewExpireTime(v))
|
|
}
|
|
|
|
// SetLastUpdateTime sets LastUpdateTime, Tag 779.
|
|
func (m NoSettlOblig) SetLastUpdateTime(v time.Time) {
|
|
m.Set(field.NewLastUpdateTime(v))
|
|
}
|
|
|
|
// SetNoSettlDetails sets NoSettlDetails, Tag 1158.
|
|
func (m NoSettlOblig) SetNoSettlDetails(f NoSettlDetailsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// GetNetGrossInd gets NetGrossInd, Tag 430.
|
|
func (m NoSettlOblig) GetNetGrossInd() (v enum.NetGrossInd, err quickfix.MessageRejectError) {
|
|
var f field.NetGrossIndField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlObligID gets SettlObligID, Tag 1161.
|
|
func (m NoSettlOblig) GetSettlObligID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettlObligIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlObligTransType gets SettlObligTransType, Tag 1162.
|
|
func (m NoSettlOblig) GetSettlObligTransType() (v enum.SettlObligTransType, err quickfix.MessageRejectError) {
|
|
var f field.SettlObligTransTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlObligRefID gets SettlObligRefID, Tag 1163.
|
|
func (m NoSettlOblig) GetSettlObligRefID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettlObligRefIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCcyAmt gets CcyAmt, Tag 1157.
|
|
func (m NoSettlOblig) GetCcyAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.CcyAmtField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlCurrAmt gets SettlCurrAmt, Tag 119.
|
|
func (m NoSettlOblig) GetSettlCurrAmt() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.SettlCurrAmtField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCurrency gets Currency, Tag 15.
|
|
func (m NoSettlOblig) GetCurrency() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CurrencyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlCurrency gets SettlCurrency, Tag 120.
|
|
func (m NoSettlOblig) GetSettlCurrency() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettlCurrencyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlCurrFxRate gets SettlCurrFxRate, Tag 155.
|
|
func (m NoSettlOblig) GetSettlCurrFxRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.SettlCurrFxRateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlDate gets SettlDate, Tag 64.
|
|
func (m NoSettlOblig) GetSettlDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettlDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSymbol gets Symbol, Tag 55.
|
|
func (m NoSettlOblig) GetSymbol() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SymbolField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSymbolSfx gets SymbolSfx, Tag 65.
|
|
func (m NoSettlOblig) GetSymbolSfx() (v enum.SymbolSfx, err quickfix.MessageRejectError) {
|
|
var f field.SymbolSfxField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityID gets SecurityID, Tag 48.
|
|
func (m NoSettlOblig) GetSecurityID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecurityIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityIDSource gets SecurityIDSource, Tag 22.
|
|
func (m NoSettlOblig) GetSecurityIDSource() (v enum.SecurityIDSource, err quickfix.MessageRejectError) {
|
|
var f field.SecurityIDSourceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoSecurityAltID gets NoSecurityAltID, Tag 454.
|
|
func (m NoSettlOblig) GetNoSecurityAltID() (NoSecurityAltIDRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoSecurityAltIDRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetProduct gets Product, Tag 460.
|
|
func (m NoSettlOblig) 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 NoSettlOblig) GetCFICode() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CFICodeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityType gets SecurityType, Tag 167.
|
|
func (m NoSettlOblig) GetSecurityType() (v enum.SecurityType, err quickfix.MessageRejectError) {
|
|
var f field.SecurityTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecuritySubType gets SecuritySubType, Tag 762.
|
|
func (m NoSettlOblig) GetSecuritySubType() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecuritySubTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMaturityMonthYear gets MaturityMonthYear, Tag 200.
|
|
func (m NoSettlOblig) GetMaturityMonthYear() (v string, err quickfix.MessageRejectError) {
|
|
var f field.MaturityMonthYearField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMaturityDate gets MaturityDate, Tag 541.
|
|
func (m NoSettlOblig) GetMaturityDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.MaturityDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCouponPaymentDate gets CouponPaymentDate, Tag 224.
|
|
func (m NoSettlOblig) 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 NoSettlOblig) GetIssueDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.IssueDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRepoCollateralSecurityType gets RepoCollateralSecurityType, Tag 239.
|
|
func (m NoSettlOblig) GetRepoCollateralSecurityType() (v int, err quickfix.MessageRejectError) {
|
|
var f field.RepoCollateralSecurityTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRepurchaseTerm gets RepurchaseTerm, Tag 226.
|
|
func (m NoSettlOblig) 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 NoSettlOblig) 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 NoSettlOblig) GetFactor() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.FactorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCreditRating gets CreditRating, Tag 255.
|
|
func (m NoSettlOblig) GetCreditRating() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CreditRatingField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetInstrRegistry gets InstrRegistry, Tag 543.
|
|
func (m NoSettlOblig) GetInstrRegistry() (v enum.InstrRegistry, err quickfix.MessageRejectError) {
|
|
var f field.InstrRegistryField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCountryOfIssue gets CountryOfIssue, Tag 470.
|
|
func (m NoSettlOblig) 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 NoSettlOblig) 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 NoSettlOblig) GetLocaleOfIssue() (v string, err quickfix.MessageRejectError) {
|
|
var f field.LocaleOfIssueField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRedemptionDate gets RedemptionDate, Tag 240.
|
|
func (m NoSettlOblig) GetRedemptionDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.RedemptionDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStrikePrice gets StrikePrice, Tag 202.
|
|
func (m NoSettlOblig) GetStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.StrikePriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStrikeCurrency gets StrikeCurrency, Tag 947.
|
|
func (m NoSettlOblig) GetStrikeCurrency() (v string, err quickfix.MessageRejectError) {
|
|
var f field.StrikeCurrencyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOptAttribute gets OptAttribute, Tag 206.
|
|
func (m NoSettlOblig) GetOptAttribute() (v string, err quickfix.MessageRejectError) {
|
|
var f field.OptAttributeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetContractMultiplier gets ContractMultiplier, Tag 231.
|
|
func (m NoSettlOblig) GetContractMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ContractMultiplierField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCouponRate gets CouponRate, Tag 223.
|
|
func (m NoSettlOblig) GetCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.CouponRateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityExchange gets SecurityExchange, Tag 207.
|
|
func (m NoSettlOblig) GetSecurityExchange() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecurityExchangeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetIssuer gets Issuer, Tag 106.
|
|
func (m NoSettlOblig) GetIssuer() (v string, err quickfix.MessageRejectError) {
|
|
var f field.IssuerField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEncodedIssuerLen gets EncodedIssuerLen, Tag 348.
|
|
func (m NoSettlOblig) 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 NoSettlOblig) GetEncodedIssuer() (v string, err quickfix.MessageRejectError) {
|
|
var f field.EncodedIssuerField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityDesc gets SecurityDesc, Tag 107.
|
|
func (m NoSettlOblig) GetSecurityDesc() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecurityDescField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEncodedSecurityDescLen gets EncodedSecurityDescLen, Tag 350.
|
|
func (m NoSettlOblig) 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 NoSettlOblig) GetEncodedSecurityDesc() (v string, err quickfix.MessageRejectError) {
|
|
var f field.EncodedSecurityDescField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPool gets Pool, Tag 691.
|
|
func (m NoSettlOblig) GetPool() (v string, err quickfix.MessageRejectError) {
|
|
var f field.PoolField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetContractSettlMonth gets ContractSettlMonth, Tag 667.
|
|
func (m NoSettlOblig) GetContractSettlMonth() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ContractSettlMonthField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCPProgram gets CPProgram, Tag 875.
|
|
func (m NoSettlOblig) 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 NoSettlOblig) GetCPRegType() (v string, err quickfix.MessageRejectError) {
|
|
var f field.CPRegTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoEvents gets NoEvents, Tag 864.
|
|
func (m NoSettlOblig) GetNoEvents() (NoEventsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoEventsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetDatedDate gets DatedDate, Tag 873.
|
|
func (m NoSettlOblig) 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 NoSettlOblig) GetInterestAccrualDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.InterestAccrualDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityStatus gets SecurityStatus, Tag 965.
|
|
func (m NoSettlOblig) GetSecurityStatus() (v enum.SecurityStatus, err quickfix.MessageRejectError) {
|
|
var f field.SecurityStatusField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettleOnOpenFlag gets SettleOnOpenFlag, Tag 966.
|
|
func (m NoSettlOblig) GetSettleOnOpenFlag() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettleOnOpenFlagField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetInstrmtAssignmentMethod gets InstrmtAssignmentMethod, Tag 1049.
|
|
func (m NoSettlOblig) GetInstrmtAssignmentMethod() (v string, err quickfix.MessageRejectError) {
|
|
var f field.InstrmtAssignmentMethodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStrikeMultiplier gets StrikeMultiplier, Tag 967.
|
|
func (m NoSettlOblig) GetStrikeMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.StrikeMultiplierField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStrikeValue gets StrikeValue, Tag 968.
|
|
func (m NoSettlOblig) GetStrikeValue() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.StrikeValueField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMinPriceIncrement gets MinPriceIncrement, Tag 969.
|
|
func (m NoSettlOblig) GetMinPriceIncrement() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.MinPriceIncrementField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPositionLimit gets PositionLimit, Tag 970.
|
|
func (m NoSettlOblig) GetPositionLimit() (v int, err quickfix.MessageRejectError) {
|
|
var f field.PositionLimitField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNTPositionLimit gets NTPositionLimit, Tag 971.
|
|
func (m NoSettlOblig) GetNTPositionLimit() (v int, err quickfix.MessageRejectError) {
|
|
var f field.NTPositionLimitField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoInstrumentParties gets NoInstrumentParties, Tag 1018.
|
|
func (m NoSettlOblig) GetNoInstrumentParties() (NoInstrumentPartiesRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoInstrumentPartiesRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetUnitOfMeasure gets UnitOfMeasure, Tag 996.
|
|
func (m NoSettlOblig) GetUnitOfMeasure() (v enum.UnitOfMeasure, err quickfix.MessageRejectError) {
|
|
var f field.UnitOfMeasureField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTimeUnit gets TimeUnit, Tag 997.
|
|
func (m NoSettlOblig) GetTimeUnit() (v enum.TimeUnit, err quickfix.MessageRejectError) {
|
|
var f field.TimeUnitField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMaturityTime gets MaturityTime, Tag 1079.
|
|
func (m NoSettlOblig) GetMaturityTime() (v string, err quickfix.MessageRejectError) {
|
|
var f field.MaturityTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityGroup gets SecurityGroup, Tag 1151.
|
|
func (m NoSettlOblig) GetSecurityGroup() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecurityGroupField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetMinPriceIncrementAmount gets MinPriceIncrementAmount, Tag 1146.
|
|
func (m NoSettlOblig) GetMinPriceIncrementAmount() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.MinPriceIncrementAmountField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetUnitOfMeasureQty gets UnitOfMeasureQty, Tag 1147.
|
|
func (m NoSettlOblig) GetUnitOfMeasureQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.UnitOfMeasureQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityXMLLen gets SecurityXMLLen, Tag 1184.
|
|
func (m NoSettlOblig) 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 NoSettlOblig) 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 NoSettlOblig) GetSecurityXMLSchema() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecurityXMLSchemaField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetProductComplex gets ProductComplex, Tag 1227.
|
|
func (m NoSettlOblig) GetProductComplex() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ProductComplexField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPriceUnitOfMeasure gets PriceUnitOfMeasure, Tag 1191.
|
|
func (m NoSettlOblig) GetPriceUnitOfMeasure() (v string, err quickfix.MessageRejectError) {
|
|
var f field.PriceUnitOfMeasureField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPriceUnitOfMeasureQty gets PriceUnitOfMeasureQty, Tag 1192.
|
|
func (m NoSettlOblig) GetPriceUnitOfMeasureQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.PriceUnitOfMeasureQtyField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlMethod gets SettlMethod, Tag 1193.
|
|
func (m NoSettlOblig) GetSettlMethod() (v enum.SettlMethod, err quickfix.MessageRejectError) {
|
|
var f field.SettlMethodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExerciseStyle gets ExerciseStyle, Tag 1194.
|
|
func (m NoSettlOblig) GetExerciseStyle() (v enum.ExerciseStyle, err quickfix.MessageRejectError) {
|
|
var f field.ExerciseStyleField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOptPayoutAmount gets OptPayoutAmount, Tag 1195.
|
|
func (m NoSettlOblig) GetOptPayoutAmount() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.OptPayoutAmountField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPriceQuoteMethod gets PriceQuoteMethod, Tag 1196.
|
|
func (m NoSettlOblig) GetPriceQuoteMethod() (v enum.PriceQuoteMethod, err quickfix.MessageRejectError) {
|
|
var f field.PriceQuoteMethodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetListMethod gets ListMethod, Tag 1198.
|
|
func (m NoSettlOblig) GetListMethod() (v enum.ListMethod, err quickfix.MessageRejectError) {
|
|
var f field.ListMethodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetCapPrice gets CapPrice, Tag 1199.
|
|
func (m NoSettlOblig) GetCapPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.CapPriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetFloorPrice gets FloorPrice, Tag 1200.
|
|
func (m NoSettlOblig) GetFloorPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.FloorPriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPutOrCall gets PutOrCall, Tag 201.
|
|
func (m NoSettlOblig) GetPutOrCall() (v enum.PutOrCall, err quickfix.MessageRejectError) {
|
|
var f field.PutOrCallField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetFlexibleIndicator gets FlexibleIndicator, Tag 1244.
|
|
func (m NoSettlOblig) GetFlexibleIndicator() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.FlexibleIndicatorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetFlexProductEligibilityIndicator gets FlexProductEligibilityIndicator, Tag 1242.
|
|
func (m NoSettlOblig) GetFlexProductEligibilityIndicator() (v bool, err quickfix.MessageRejectError) {
|
|
var f field.FlexProductEligibilityIndicatorField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetValuationMethod gets ValuationMethod, Tag 1197.
|
|
func (m NoSettlOblig) GetValuationMethod() (v enum.ValuationMethod, err quickfix.MessageRejectError) {
|
|
var f field.ValuationMethodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetContractMultiplierUnit gets ContractMultiplierUnit, Tag 1435.
|
|
func (m NoSettlOblig) GetContractMultiplierUnit() (v enum.ContractMultiplierUnit, err quickfix.MessageRejectError) {
|
|
var f field.ContractMultiplierUnitField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetFlowScheduleType gets FlowScheduleType, Tag 1439.
|
|
func (m NoSettlOblig) GetFlowScheduleType() (v enum.FlowScheduleType, err quickfix.MessageRejectError) {
|
|
var f field.FlowScheduleTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRestructuringType gets RestructuringType, Tag 1449.
|
|
func (m NoSettlOblig) GetRestructuringType() (v enum.RestructuringType, err quickfix.MessageRejectError) {
|
|
var f field.RestructuringTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSeniority gets Seniority, Tag 1450.
|
|
func (m NoSettlOblig) GetSeniority() (v enum.Seniority, err quickfix.MessageRejectError) {
|
|
var f field.SeniorityField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNotionalPercentageOutstanding gets NotionalPercentageOutstanding, Tag 1451.
|
|
func (m NoSettlOblig) GetNotionalPercentageOutstanding() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.NotionalPercentageOutstandingField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOriginalNotionalPercentageOutstanding gets OriginalNotionalPercentageOutstanding, Tag 1452.
|
|
func (m NoSettlOblig) GetOriginalNotionalPercentageOutstanding() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.OriginalNotionalPercentageOutstandingField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetAttachmentPoint gets AttachmentPoint, Tag 1457.
|
|
func (m NoSettlOblig) GetAttachmentPoint() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.AttachmentPointField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetDetachmentPoint gets DetachmentPoint, Tag 1458.
|
|
func (m NoSettlOblig) GetDetachmentPoint() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.DetachmentPointField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStrikePriceDeterminationMethod gets StrikePriceDeterminationMethod, Tag 1478.
|
|
func (m NoSettlOblig) GetStrikePriceDeterminationMethod() (v enum.StrikePriceDeterminationMethod, err quickfix.MessageRejectError) {
|
|
var f field.StrikePriceDeterminationMethodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStrikePriceBoundaryMethod gets StrikePriceBoundaryMethod, Tag 1479.
|
|
func (m NoSettlOblig) GetStrikePriceBoundaryMethod() (v enum.StrikePriceBoundaryMethod, err quickfix.MessageRejectError) {
|
|
var f field.StrikePriceBoundaryMethodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetStrikePriceBoundaryPrecision gets StrikePriceBoundaryPrecision, Tag 1480.
|
|
func (m NoSettlOblig) GetStrikePriceBoundaryPrecision() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.StrikePriceBoundaryPrecisionField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetUnderlyingPriceDeterminationMethod gets UnderlyingPriceDeterminationMethod, Tag 1481.
|
|
func (m NoSettlOblig) GetUnderlyingPriceDeterminationMethod() (v enum.UnderlyingPriceDeterminationMethod, err quickfix.MessageRejectError) {
|
|
var f field.UnderlyingPriceDeterminationMethodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetOptPayoutType gets OptPayoutType, Tag 1482.
|
|
func (m NoSettlOblig) GetOptPayoutType() (v enum.OptPayoutType, err quickfix.MessageRejectError) {
|
|
var f field.OptPayoutTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoComplexEvents gets NoComplexEvents, Tag 1483.
|
|
func (m NoSettlOblig) GetNoComplexEvents() (NoComplexEventsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoComplexEventsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetNoPartyIDs gets NoPartyIDs, Tag 453.
|
|
func (m NoSettlOblig) GetNoPartyIDs() (NoPartyIDsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoPartyIDsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// GetEffectiveTime gets EffectiveTime, Tag 168.
|
|
func (m NoSettlOblig) GetEffectiveTime() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.EffectiveTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetExpireTime gets ExpireTime, Tag 126.
|
|
func (m NoSettlOblig) GetExpireTime() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.ExpireTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetLastUpdateTime gets LastUpdateTime, Tag 779.
|
|
func (m NoSettlOblig) GetLastUpdateTime() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.LastUpdateTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoSettlDetails gets NoSettlDetails, Tag 1158.
|
|
func (m NoSettlOblig) GetNoSettlDetails() (NoSettlDetailsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoSettlDetailsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// HasNetGrossInd returns true if NetGrossInd is present, Tag 430.
|
|
func (m NoSettlOblig) HasNetGrossInd() bool {
|
|
return m.Has(tag.NetGrossInd)
|
|
}
|
|
|
|
// HasSettlObligID returns true if SettlObligID is present, Tag 1161.
|
|
func (m NoSettlOblig) HasSettlObligID() bool {
|
|
return m.Has(tag.SettlObligID)
|
|
}
|
|
|
|
// HasSettlObligTransType returns true if SettlObligTransType is present, Tag 1162.
|
|
func (m NoSettlOblig) HasSettlObligTransType() bool {
|
|
return m.Has(tag.SettlObligTransType)
|
|
}
|
|
|
|
// HasSettlObligRefID returns true if SettlObligRefID is present, Tag 1163.
|
|
func (m NoSettlOblig) HasSettlObligRefID() bool {
|
|
return m.Has(tag.SettlObligRefID)
|
|
}
|
|
|
|
// HasCcyAmt returns true if CcyAmt is present, Tag 1157.
|
|
func (m NoSettlOblig) HasCcyAmt() bool {
|
|
return m.Has(tag.CcyAmt)
|
|
}
|
|
|
|
// HasSettlCurrAmt returns true if SettlCurrAmt is present, Tag 119.
|
|
func (m NoSettlOblig) HasSettlCurrAmt() bool {
|
|
return m.Has(tag.SettlCurrAmt)
|
|
}
|
|
|
|
// HasCurrency returns true if Currency is present, Tag 15.
|
|
func (m NoSettlOblig) HasCurrency() bool {
|
|
return m.Has(tag.Currency)
|
|
}
|
|
|
|
// HasSettlCurrency returns true if SettlCurrency is present, Tag 120.
|
|
func (m NoSettlOblig) HasSettlCurrency() bool {
|
|
return m.Has(tag.SettlCurrency)
|
|
}
|
|
|
|
// HasSettlCurrFxRate returns true if SettlCurrFxRate is present, Tag 155.
|
|
func (m NoSettlOblig) HasSettlCurrFxRate() bool {
|
|
return m.Has(tag.SettlCurrFxRate)
|
|
}
|
|
|
|
// HasSettlDate returns true if SettlDate is present, Tag 64.
|
|
func (m NoSettlOblig) HasSettlDate() bool {
|
|
return m.Has(tag.SettlDate)
|
|
}
|
|
|
|
// HasSymbol returns true if Symbol is present, Tag 55.
|
|
func (m NoSettlOblig) HasSymbol() bool {
|
|
return m.Has(tag.Symbol)
|
|
}
|
|
|
|
// HasSymbolSfx returns true if SymbolSfx is present, Tag 65.
|
|
func (m NoSettlOblig) HasSymbolSfx() bool {
|
|
return m.Has(tag.SymbolSfx)
|
|
}
|
|
|
|
// HasSecurityID returns true if SecurityID is present, Tag 48.
|
|
func (m NoSettlOblig) HasSecurityID() bool {
|
|
return m.Has(tag.SecurityID)
|
|
}
|
|
|
|
// HasSecurityIDSource returns true if SecurityIDSource is present, Tag 22.
|
|
func (m NoSettlOblig) HasSecurityIDSource() bool {
|
|
return m.Has(tag.SecurityIDSource)
|
|
}
|
|
|
|
// HasNoSecurityAltID returns true if NoSecurityAltID is present, Tag 454.
|
|
func (m NoSettlOblig) HasNoSecurityAltID() bool {
|
|
return m.Has(tag.NoSecurityAltID)
|
|
}
|
|
|
|
// HasProduct returns true if Product is present, Tag 460.
|
|
func (m NoSettlOblig) HasProduct() bool {
|
|
return m.Has(tag.Product)
|
|
}
|
|
|
|
// HasCFICode returns true if CFICode is present, Tag 461.
|
|
func (m NoSettlOblig) HasCFICode() bool {
|
|
return m.Has(tag.CFICode)
|
|
}
|
|
|
|
// HasSecurityType returns true if SecurityType is present, Tag 167.
|
|
func (m NoSettlOblig) HasSecurityType() bool {
|
|
return m.Has(tag.SecurityType)
|
|
}
|
|
|
|
// HasSecuritySubType returns true if SecuritySubType is present, Tag 762.
|
|
func (m NoSettlOblig) HasSecuritySubType() bool {
|
|
return m.Has(tag.SecuritySubType)
|
|
}
|
|
|
|
// HasMaturityMonthYear returns true if MaturityMonthYear is present, Tag 200.
|
|
func (m NoSettlOblig) HasMaturityMonthYear() bool {
|
|
return m.Has(tag.MaturityMonthYear)
|
|
}
|
|
|
|
// HasMaturityDate returns true if MaturityDate is present, Tag 541.
|
|
func (m NoSettlOblig) HasMaturityDate() bool {
|
|
return m.Has(tag.MaturityDate)
|
|
}
|
|
|
|
// HasCouponPaymentDate returns true if CouponPaymentDate is present, Tag 224.
|
|
func (m NoSettlOblig) HasCouponPaymentDate() bool {
|
|
return m.Has(tag.CouponPaymentDate)
|
|
}
|
|
|
|
// HasIssueDate returns true if IssueDate is present, Tag 225.
|
|
func (m NoSettlOblig) HasIssueDate() bool {
|
|
return m.Has(tag.IssueDate)
|
|
}
|
|
|
|
// HasRepoCollateralSecurityType returns true if RepoCollateralSecurityType is present, Tag 239.
|
|
func (m NoSettlOblig) HasRepoCollateralSecurityType() bool {
|
|
return m.Has(tag.RepoCollateralSecurityType)
|
|
}
|
|
|
|
// HasRepurchaseTerm returns true if RepurchaseTerm is present, Tag 226.
|
|
func (m NoSettlOblig) HasRepurchaseTerm() bool {
|
|
return m.Has(tag.RepurchaseTerm)
|
|
}
|
|
|
|
// HasRepurchaseRate returns true if RepurchaseRate is present, Tag 227.
|
|
func (m NoSettlOblig) HasRepurchaseRate() bool {
|
|
return m.Has(tag.RepurchaseRate)
|
|
}
|
|
|
|
// HasFactor returns true if Factor is present, Tag 228.
|
|
func (m NoSettlOblig) HasFactor() bool {
|
|
return m.Has(tag.Factor)
|
|
}
|
|
|
|
// HasCreditRating returns true if CreditRating is present, Tag 255.
|
|
func (m NoSettlOblig) HasCreditRating() bool {
|
|
return m.Has(tag.CreditRating)
|
|
}
|
|
|
|
// HasInstrRegistry returns true if InstrRegistry is present, Tag 543.
|
|
func (m NoSettlOblig) HasInstrRegistry() bool {
|
|
return m.Has(tag.InstrRegistry)
|
|
}
|
|
|
|
// HasCountryOfIssue returns true if CountryOfIssue is present, Tag 470.
|
|
func (m NoSettlOblig) HasCountryOfIssue() bool {
|
|
return m.Has(tag.CountryOfIssue)
|
|
}
|
|
|
|
// HasStateOrProvinceOfIssue returns true if StateOrProvinceOfIssue is present, Tag 471.
|
|
func (m NoSettlOblig) HasStateOrProvinceOfIssue() bool {
|
|
return m.Has(tag.StateOrProvinceOfIssue)
|
|
}
|
|
|
|
// HasLocaleOfIssue returns true if LocaleOfIssue is present, Tag 472.
|
|
func (m NoSettlOblig) HasLocaleOfIssue() bool {
|
|
return m.Has(tag.LocaleOfIssue)
|
|
}
|
|
|
|
// HasRedemptionDate returns true if RedemptionDate is present, Tag 240.
|
|
func (m NoSettlOblig) HasRedemptionDate() bool {
|
|
return m.Has(tag.RedemptionDate)
|
|
}
|
|
|
|
// HasStrikePrice returns true if StrikePrice is present, Tag 202.
|
|
func (m NoSettlOblig) HasStrikePrice() bool {
|
|
return m.Has(tag.StrikePrice)
|
|
}
|
|
|
|
// HasStrikeCurrency returns true if StrikeCurrency is present, Tag 947.
|
|
func (m NoSettlOblig) HasStrikeCurrency() bool {
|
|
return m.Has(tag.StrikeCurrency)
|
|
}
|
|
|
|
// HasOptAttribute returns true if OptAttribute is present, Tag 206.
|
|
func (m NoSettlOblig) HasOptAttribute() bool {
|
|
return m.Has(tag.OptAttribute)
|
|
}
|
|
|
|
// HasContractMultiplier returns true if ContractMultiplier is present, Tag 231.
|
|
func (m NoSettlOblig) HasContractMultiplier() bool {
|
|
return m.Has(tag.ContractMultiplier)
|
|
}
|
|
|
|
// HasCouponRate returns true if CouponRate is present, Tag 223.
|
|
func (m NoSettlOblig) HasCouponRate() bool {
|
|
return m.Has(tag.CouponRate)
|
|
}
|
|
|
|
// HasSecurityExchange returns true if SecurityExchange is present, Tag 207.
|
|
func (m NoSettlOblig) HasSecurityExchange() bool {
|
|
return m.Has(tag.SecurityExchange)
|
|
}
|
|
|
|
// HasIssuer returns true if Issuer is present, Tag 106.
|
|
func (m NoSettlOblig) HasIssuer() bool {
|
|
return m.Has(tag.Issuer)
|
|
}
|
|
|
|
// HasEncodedIssuerLen returns true if EncodedIssuerLen is present, Tag 348.
|
|
func (m NoSettlOblig) HasEncodedIssuerLen() bool {
|
|
return m.Has(tag.EncodedIssuerLen)
|
|
}
|
|
|
|
// HasEncodedIssuer returns true if EncodedIssuer is present, Tag 349.
|
|
func (m NoSettlOblig) HasEncodedIssuer() bool {
|
|
return m.Has(tag.EncodedIssuer)
|
|
}
|
|
|
|
// HasSecurityDesc returns true if SecurityDesc is present, Tag 107.
|
|
func (m NoSettlOblig) HasSecurityDesc() bool {
|
|
return m.Has(tag.SecurityDesc)
|
|
}
|
|
|
|
// HasEncodedSecurityDescLen returns true if EncodedSecurityDescLen is present, Tag 350.
|
|
func (m NoSettlOblig) HasEncodedSecurityDescLen() bool {
|
|
return m.Has(tag.EncodedSecurityDescLen)
|
|
}
|
|
|
|
// HasEncodedSecurityDesc returns true if EncodedSecurityDesc is present, Tag 351.
|
|
func (m NoSettlOblig) HasEncodedSecurityDesc() bool {
|
|
return m.Has(tag.EncodedSecurityDesc)
|
|
}
|
|
|
|
// HasPool returns true if Pool is present, Tag 691.
|
|
func (m NoSettlOblig) HasPool() bool {
|
|
return m.Has(tag.Pool)
|
|
}
|
|
|
|
// HasContractSettlMonth returns true if ContractSettlMonth is present, Tag 667.
|
|
func (m NoSettlOblig) HasContractSettlMonth() bool {
|
|
return m.Has(tag.ContractSettlMonth)
|
|
}
|
|
|
|
// HasCPProgram returns true if CPProgram is present, Tag 875.
|
|
func (m NoSettlOblig) HasCPProgram() bool {
|
|
return m.Has(tag.CPProgram)
|
|
}
|
|
|
|
// HasCPRegType returns true if CPRegType is present, Tag 876.
|
|
func (m NoSettlOblig) HasCPRegType() bool {
|
|
return m.Has(tag.CPRegType)
|
|
}
|
|
|
|
// HasNoEvents returns true if NoEvents is present, Tag 864.
|
|
func (m NoSettlOblig) HasNoEvents() bool {
|
|
return m.Has(tag.NoEvents)
|
|
}
|
|
|
|
// HasDatedDate returns true if DatedDate is present, Tag 873.
|
|
func (m NoSettlOblig) HasDatedDate() bool {
|
|
return m.Has(tag.DatedDate)
|
|
}
|
|
|
|
// HasInterestAccrualDate returns true if InterestAccrualDate is present, Tag 874.
|
|
func (m NoSettlOblig) HasInterestAccrualDate() bool {
|
|
return m.Has(tag.InterestAccrualDate)
|
|
}
|
|
|
|
// HasSecurityStatus returns true if SecurityStatus is present, Tag 965.
|
|
func (m NoSettlOblig) HasSecurityStatus() bool {
|
|
return m.Has(tag.SecurityStatus)
|
|
}
|
|
|
|
// HasSettleOnOpenFlag returns true if SettleOnOpenFlag is present, Tag 966.
|
|
func (m NoSettlOblig) HasSettleOnOpenFlag() bool {
|
|
return m.Has(tag.SettleOnOpenFlag)
|
|
}
|
|
|
|
// HasInstrmtAssignmentMethod returns true if InstrmtAssignmentMethod is present, Tag 1049.
|
|
func (m NoSettlOblig) HasInstrmtAssignmentMethod() bool {
|
|
return m.Has(tag.InstrmtAssignmentMethod)
|
|
}
|
|
|
|
// HasStrikeMultiplier returns true if StrikeMultiplier is present, Tag 967.
|
|
func (m NoSettlOblig) HasStrikeMultiplier() bool {
|
|
return m.Has(tag.StrikeMultiplier)
|
|
}
|
|
|
|
// HasStrikeValue returns true if StrikeValue is present, Tag 968.
|
|
func (m NoSettlOblig) HasStrikeValue() bool {
|
|
return m.Has(tag.StrikeValue)
|
|
}
|
|
|
|
// HasMinPriceIncrement returns true if MinPriceIncrement is present, Tag 969.
|
|
func (m NoSettlOblig) HasMinPriceIncrement() bool {
|
|
return m.Has(tag.MinPriceIncrement)
|
|
}
|
|
|
|
// HasPositionLimit returns true if PositionLimit is present, Tag 970.
|
|
func (m NoSettlOblig) HasPositionLimit() bool {
|
|
return m.Has(tag.PositionLimit)
|
|
}
|
|
|
|
// HasNTPositionLimit returns true if NTPositionLimit is present, Tag 971.
|
|
func (m NoSettlOblig) HasNTPositionLimit() bool {
|
|
return m.Has(tag.NTPositionLimit)
|
|
}
|
|
|
|
// HasNoInstrumentParties returns true if NoInstrumentParties is present, Tag 1018.
|
|
func (m NoSettlOblig) HasNoInstrumentParties() bool {
|
|
return m.Has(tag.NoInstrumentParties)
|
|
}
|
|
|
|
// HasUnitOfMeasure returns true if UnitOfMeasure is present, Tag 996.
|
|
func (m NoSettlOblig) HasUnitOfMeasure() bool {
|
|
return m.Has(tag.UnitOfMeasure)
|
|
}
|
|
|
|
// HasTimeUnit returns true if TimeUnit is present, Tag 997.
|
|
func (m NoSettlOblig) HasTimeUnit() bool {
|
|
return m.Has(tag.TimeUnit)
|
|
}
|
|
|
|
// HasMaturityTime returns true if MaturityTime is present, Tag 1079.
|
|
func (m NoSettlOblig) HasMaturityTime() bool {
|
|
return m.Has(tag.MaturityTime)
|
|
}
|
|
|
|
// HasSecurityGroup returns true if SecurityGroup is present, Tag 1151.
|
|
func (m NoSettlOblig) HasSecurityGroup() bool {
|
|
return m.Has(tag.SecurityGroup)
|
|
}
|
|
|
|
// HasMinPriceIncrementAmount returns true if MinPriceIncrementAmount is present, Tag 1146.
|
|
func (m NoSettlOblig) HasMinPriceIncrementAmount() bool {
|
|
return m.Has(tag.MinPriceIncrementAmount)
|
|
}
|
|
|
|
// HasUnitOfMeasureQty returns true if UnitOfMeasureQty is present, Tag 1147.
|
|
func (m NoSettlOblig) HasUnitOfMeasureQty() bool {
|
|
return m.Has(tag.UnitOfMeasureQty)
|
|
}
|
|
|
|
// HasSecurityXMLLen returns true if SecurityXMLLen is present, Tag 1184.
|
|
func (m NoSettlOblig) HasSecurityXMLLen() bool {
|
|
return m.Has(tag.SecurityXMLLen)
|
|
}
|
|
|
|
// HasSecurityXML returns true if SecurityXML is present, Tag 1185.
|
|
func (m NoSettlOblig) HasSecurityXML() bool {
|
|
return m.Has(tag.SecurityXML)
|
|
}
|
|
|
|
// HasSecurityXMLSchema returns true if SecurityXMLSchema is present, Tag 1186.
|
|
func (m NoSettlOblig) HasSecurityXMLSchema() bool {
|
|
return m.Has(tag.SecurityXMLSchema)
|
|
}
|
|
|
|
// HasProductComplex returns true if ProductComplex is present, Tag 1227.
|
|
func (m NoSettlOblig) HasProductComplex() bool {
|
|
return m.Has(tag.ProductComplex)
|
|
}
|
|
|
|
// HasPriceUnitOfMeasure returns true if PriceUnitOfMeasure is present, Tag 1191.
|
|
func (m NoSettlOblig) HasPriceUnitOfMeasure() bool {
|
|
return m.Has(tag.PriceUnitOfMeasure)
|
|
}
|
|
|
|
// HasPriceUnitOfMeasureQty returns true if PriceUnitOfMeasureQty is present, Tag 1192.
|
|
func (m NoSettlOblig) HasPriceUnitOfMeasureQty() bool {
|
|
return m.Has(tag.PriceUnitOfMeasureQty)
|
|
}
|
|
|
|
// HasSettlMethod returns true if SettlMethod is present, Tag 1193.
|
|
func (m NoSettlOblig) HasSettlMethod() bool {
|
|
return m.Has(tag.SettlMethod)
|
|
}
|
|
|
|
// HasExerciseStyle returns true if ExerciseStyle is present, Tag 1194.
|
|
func (m NoSettlOblig) HasExerciseStyle() bool {
|
|
return m.Has(tag.ExerciseStyle)
|
|
}
|
|
|
|
// HasOptPayoutAmount returns true if OptPayoutAmount is present, Tag 1195.
|
|
func (m NoSettlOblig) HasOptPayoutAmount() bool {
|
|
return m.Has(tag.OptPayoutAmount)
|
|
}
|
|
|
|
// HasPriceQuoteMethod returns true if PriceQuoteMethod is present, Tag 1196.
|
|
func (m NoSettlOblig) HasPriceQuoteMethod() bool {
|
|
return m.Has(tag.PriceQuoteMethod)
|
|
}
|
|
|
|
// HasListMethod returns true if ListMethod is present, Tag 1198.
|
|
func (m NoSettlOblig) HasListMethod() bool {
|
|
return m.Has(tag.ListMethod)
|
|
}
|
|
|
|
// HasCapPrice returns true if CapPrice is present, Tag 1199.
|
|
func (m NoSettlOblig) HasCapPrice() bool {
|
|
return m.Has(tag.CapPrice)
|
|
}
|
|
|
|
// HasFloorPrice returns true if FloorPrice is present, Tag 1200.
|
|
func (m NoSettlOblig) HasFloorPrice() bool {
|
|
return m.Has(tag.FloorPrice)
|
|
}
|
|
|
|
// HasPutOrCall returns true if PutOrCall is present, Tag 201.
|
|
func (m NoSettlOblig) HasPutOrCall() bool {
|
|
return m.Has(tag.PutOrCall)
|
|
}
|
|
|
|
// HasFlexibleIndicator returns true if FlexibleIndicator is present, Tag 1244.
|
|
func (m NoSettlOblig) HasFlexibleIndicator() bool {
|
|
return m.Has(tag.FlexibleIndicator)
|
|
}
|
|
|
|
// HasFlexProductEligibilityIndicator returns true if FlexProductEligibilityIndicator is present, Tag 1242.
|
|
func (m NoSettlOblig) HasFlexProductEligibilityIndicator() bool {
|
|
return m.Has(tag.FlexProductEligibilityIndicator)
|
|
}
|
|
|
|
// HasValuationMethod returns true if ValuationMethod is present, Tag 1197.
|
|
func (m NoSettlOblig) HasValuationMethod() bool {
|
|
return m.Has(tag.ValuationMethod)
|
|
}
|
|
|
|
// HasContractMultiplierUnit returns true if ContractMultiplierUnit is present, Tag 1435.
|
|
func (m NoSettlOblig) HasContractMultiplierUnit() bool {
|
|
return m.Has(tag.ContractMultiplierUnit)
|
|
}
|
|
|
|
// HasFlowScheduleType returns true if FlowScheduleType is present, Tag 1439.
|
|
func (m NoSettlOblig) HasFlowScheduleType() bool {
|
|
return m.Has(tag.FlowScheduleType)
|
|
}
|
|
|
|
// HasRestructuringType returns true if RestructuringType is present, Tag 1449.
|
|
func (m NoSettlOblig) HasRestructuringType() bool {
|
|
return m.Has(tag.RestructuringType)
|
|
}
|
|
|
|
// HasSeniority returns true if Seniority is present, Tag 1450.
|
|
func (m NoSettlOblig) HasSeniority() bool {
|
|
return m.Has(tag.Seniority)
|
|
}
|
|
|
|
// HasNotionalPercentageOutstanding returns true if NotionalPercentageOutstanding is present, Tag 1451.
|
|
func (m NoSettlOblig) HasNotionalPercentageOutstanding() bool {
|
|
return m.Has(tag.NotionalPercentageOutstanding)
|
|
}
|
|
|
|
// HasOriginalNotionalPercentageOutstanding returns true if OriginalNotionalPercentageOutstanding is present, Tag 1452.
|
|
func (m NoSettlOblig) HasOriginalNotionalPercentageOutstanding() bool {
|
|
return m.Has(tag.OriginalNotionalPercentageOutstanding)
|
|
}
|
|
|
|
// HasAttachmentPoint returns true if AttachmentPoint is present, Tag 1457.
|
|
func (m NoSettlOblig) HasAttachmentPoint() bool {
|
|
return m.Has(tag.AttachmentPoint)
|
|
}
|
|
|
|
// HasDetachmentPoint returns true if DetachmentPoint is present, Tag 1458.
|
|
func (m NoSettlOblig) HasDetachmentPoint() bool {
|
|
return m.Has(tag.DetachmentPoint)
|
|
}
|
|
|
|
// HasStrikePriceDeterminationMethod returns true if StrikePriceDeterminationMethod is present, Tag 1478.
|
|
func (m NoSettlOblig) HasStrikePriceDeterminationMethod() bool {
|
|
return m.Has(tag.StrikePriceDeterminationMethod)
|
|
}
|
|
|
|
// HasStrikePriceBoundaryMethod returns true if StrikePriceBoundaryMethod is present, Tag 1479.
|
|
func (m NoSettlOblig) HasStrikePriceBoundaryMethod() bool {
|
|
return m.Has(tag.StrikePriceBoundaryMethod)
|
|
}
|
|
|
|
// HasStrikePriceBoundaryPrecision returns true if StrikePriceBoundaryPrecision is present, Tag 1480.
|
|
func (m NoSettlOblig) HasStrikePriceBoundaryPrecision() bool {
|
|
return m.Has(tag.StrikePriceBoundaryPrecision)
|
|
}
|
|
|
|
// HasUnderlyingPriceDeterminationMethod returns true if UnderlyingPriceDeterminationMethod is present, Tag 1481.
|
|
func (m NoSettlOblig) HasUnderlyingPriceDeterminationMethod() bool {
|
|
return m.Has(tag.UnderlyingPriceDeterminationMethod)
|
|
}
|
|
|
|
// HasOptPayoutType returns true if OptPayoutType is present, Tag 1482.
|
|
func (m NoSettlOblig) HasOptPayoutType() bool {
|
|
return m.Has(tag.OptPayoutType)
|
|
}
|
|
|
|
// HasNoComplexEvents returns true if NoComplexEvents is present, Tag 1483.
|
|
func (m NoSettlOblig) HasNoComplexEvents() bool {
|
|
return m.Has(tag.NoComplexEvents)
|
|
}
|
|
|
|
// HasNoPartyIDs returns true if NoPartyIDs is present, Tag 453.
|
|
func (m NoSettlOblig) HasNoPartyIDs() bool {
|
|
return m.Has(tag.NoPartyIDs)
|
|
}
|
|
|
|
// HasEffectiveTime returns true if EffectiveTime is present, Tag 168.
|
|
func (m NoSettlOblig) HasEffectiveTime() bool {
|
|
return m.Has(tag.EffectiveTime)
|
|
}
|
|
|
|
// HasExpireTime returns true if ExpireTime is present, Tag 126.
|
|
func (m NoSettlOblig) HasExpireTime() bool {
|
|
return m.Has(tag.ExpireTime)
|
|
}
|
|
|
|
// HasLastUpdateTime returns true if LastUpdateTime is present, Tag 779.
|
|
func (m NoSettlOblig) HasLastUpdateTime() bool {
|
|
return m.Has(tag.LastUpdateTime)
|
|
}
|
|
|
|
// HasNoSettlDetails returns true if NoSettlDetails is present, Tag 1158.
|
|
func (m NoSettlOblig) HasNoSettlDetails() bool {
|
|
return m.Has(tag.NoSettlDetails)
|
|
}
|
|
|
|
// NoSecurityAltID is a repeating group element, Tag 454.
|
|
type NoSecurityAltID struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetSecurityAltID sets SecurityAltID, Tag 455.
|
|
func (m NoSecurityAltID) SetSecurityAltID(v string) {
|
|
m.Set(field.NewSecurityAltID(v))
|
|
}
|
|
|
|
// SetSecurityAltIDSource sets SecurityAltIDSource, Tag 456.
|
|
func (m NoSecurityAltID) SetSecurityAltIDSource(v string) {
|
|
m.Set(field.NewSecurityAltIDSource(v))
|
|
}
|
|
|
|
// GetSecurityAltID gets SecurityAltID, Tag 455.
|
|
func (m NoSecurityAltID) GetSecurityAltID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecurityAltIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSecurityAltIDSource gets SecurityAltIDSource, Tag 456.
|
|
func (m NoSecurityAltID) GetSecurityAltIDSource() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SecurityAltIDSourceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasSecurityAltID returns true if SecurityAltID is present, Tag 455.
|
|
func (m NoSecurityAltID) HasSecurityAltID() bool {
|
|
return m.Has(tag.SecurityAltID)
|
|
}
|
|
|
|
// HasSecurityAltIDSource returns true if SecurityAltIDSource is present, Tag 456.
|
|
func (m NoSecurityAltID) HasSecurityAltIDSource() bool {
|
|
return m.Has(tag.SecurityAltIDSource)
|
|
}
|
|
|
|
// NoSecurityAltIDRepeatingGroup is a repeating group, Tag 454.
|
|
type NoSecurityAltIDRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoSecurityAltIDRepeatingGroup returns an initialized, NoSecurityAltIDRepeatingGroup.
|
|
func NewNoSecurityAltIDRepeatingGroup() NoSecurityAltIDRepeatingGroup {
|
|
return NoSecurityAltIDRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoSecurityAltID,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.SecurityAltID),
|
|
quickfix.GroupElement(tag.SecurityAltIDSource),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoSecurityAltID to this group.
|
|
func (m NoSecurityAltIDRepeatingGroup) Add() NoSecurityAltID {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoSecurityAltID{g}
|
|
}
|
|
|
|
// Get returns the ith NoSecurityAltID in the NoSecurityAltIDRepeatinGroup.
|
|
func (m NoSecurityAltIDRepeatingGroup) Get(i int) NoSecurityAltID {
|
|
return NoSecurityAltID{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoEvents is a repeating group element, Tag 864.
|
|
type NoEvents struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetEventType sets EventType, Tag 865.
|
|
func (m NoEvents) SetEventType(v enum.EventType) {
|
|
m.Set(field.NewEventType(v))
|
|
}
|
|
|
|
// SetEventDate sets EventDate, Tag 866.
|
|
func (m NoEvents) SetEventDate(v string) {
|
|
m.Set(field.NewEventDate(v))
|
|
}
|
|
|
|
// SetEventPx sets EventPx, Tag 867.
|
|
func (m NoEvents) SetEventPx(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewEventPx(value, scale))
|
|
}
|
|
|
|
// SetEventText sets EventText, Tag 868.
|
|
func (m NoEvents) SetEventText(v string) {
|
|
m.Set(field.NewEventText(v))
|
|
}
|
|
|
|
// SetEventTime sets EventTime, Tag 1145.
|
|
func (m NoEvents) SetEventTime(v time.Time) {
|
|
m.Set(field.NewEventTime(v))
|
|
}
|
|
|
|
// GetEventType gets EventType, Tag 865.
|
|
func (m NoEvents) GetEventType() (v enum.EventType, err quickfix.MessageRejectError) {
|
|
var f field.EventTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEventDate gets EventDate, Tag 866.
|
|
func (m NoEvents) GetEventDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.EventDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEventPx gets EventPx, Tag 867.
|
|
func (m NoEvents) GetEventPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.EventPxField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEventText gets EventText, Tag 868.
|
|
func (m NoEvents) GetEventText() (v string, err quickfix.MessageRejectError) {
|
|
var f field.EventTextField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEventTime gets EventTime, Tag 1145.
|
|
func (m NoEvents) GetEventTime() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.EventTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasEventType returns true if EventType is present, Tag 865.
|
|
func (m NoEvents) HasEventType() bool {
|
|
return m.Has(tag.EventType)
|
|
}
|
|
|
|
// HasEventDate returns true if EventDate is present, Tag 866.
|
|
func (m NoEvents) HasEventDate() bool {
|
|
return m.Has(tag.EventDate)
|
|
}
|
|
|
|
// HasEventPx returns true if EventPx is present, Tag 867.
|
|
func (m NoEvents) HasEventPx() bool {
|
|
return m.Has(tag.EventPx)
|
|
}
|
|
|
|
// HasEventText returns true if EventText is present, Tag 868.
|
|
func (m NoEvents) HasEventText() bool {
|
|
return m.Has(tag.EventText)
|
|
}
|
|
|
|
// HasEventTime returns true if EventTime is present, Tag 1145.
|
|
func (m NoEvents) HasEventTime() bool {
|
|
return m.Has(tag.EventTime)
|
|
}
|
|
|
|
// NoEventsRepeatingGroup is a repeating group, Tag 864.
|
|
type NoEventsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoEventsRepeatingGroup returns an initialized, NoEventsRepeatingGroup.
|
|
func NewNoEventsRepeatingGroup() NoEventsRepeatingGroup {
|
|
return NoEventsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoEvents,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.EventType),
|
|
quickfix.GroupElement(tag.EventDate),
|
|
quickfix.GroupElement(tag.EventPx),
|
|
quickfix.GroupElement(tag.EventText),
|
|
quickfix.GroupElement(tag.EventTime),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoEvents to this group.
|
|
func (m NoEventsRepeatingGroup) Add() NoEvents {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoEvents{g}
|
|
}
|
|
|
|
// Get returns the ith NoEvents in the NoEventsRepeatinGroup.
|
|
func (m NoEventsRepeatingGroup) Get(i int) NoEvents {
|
|
return NoEvents{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoInstrumentParties is a repeating group element, Tag 1018.
|
|
type NoInstrumentParties struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetInstrumentPartyID sets InstrumentPartyID, Tag 1019.
|
|
func (m NoInstrumentParties) SetInstrumentPartyID(v string) {
|
|
m.Set(field.NewInstrumentPartyID(v))
|
|
}
|
|
|
|
// SetInstrumentPartyIDSource sets InstrumentPartyIDSource, Tag 1050.
|
|
func (m NoInstrumentParties) SetInstrumentPartyIDSource(v string) {
|
|
m.Set(field.NewInstrumentPartyIDSource(v))
|
|
}
|
|
|
|
// SetInstrumentPartyRole sets InstrumentPartyRole, Tag 1051.
|
|
func (m NoInstrumentParties) SetInstrumentPartyRole(v int) {
|
|
m.Set(field.NewInstrumentPartyRole(v))
|
|
}
|
|
|
|
// SetNoInstrumentPartySubIDs sets NoInstrumentPartySubIDs, Tag 1052.
|
|
func (m NoInstrumentParties) SetNoInstrumentPartySubIDs(f NoInstrumentPartySubIDsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// GetInstrumentPartyID gets InstrumentPartyID, Tag 1019.
|
|
func (m NoInstrumentParties) GetInstrumentPartyID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.InstrumentPartyIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetInstrumentPartyIDSource gets InstrumentPartyIDSource, Tag 1050.
|
|
func (m NoInstrumentParties) GetInstrumentPartyIDSource() (v string, err quickfix.MessageRejectError) {
|
|
var f field.InstrumentPartyIDSourceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetInstrumentPartyRole gets InstrumentPartyRole, Tag 1051.
|
|
func (m NoInstrumentParties) GetInstrumentPartyRole() (v int, err quickfix.MessageRejectError) {
|
|
var f field.InstrumentPartyRoleField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoInstrumentPartySubIDs gets NoInstrumentPartySubIDs, Tag 1052.
|
|
func (m NoInstrumentParties) GetNoInstrumentPartySubIDs() (NoInstrumentPartySubIDsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoInstrumentPartySubIDsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// HasInstrumentPartyID returns true if InstrumentPartyID is present, Tag 1019.
|
|
func (m NoInstrumentParties) HasInstrumentPartyID() bool {
|
|
return m.Has(tag.InstrumentPartyID)
|
|
}
|
|
|
|
// HasInstrumentPartyIDSource returns true if InstrumentPartyIDSource is present, Tag 1050.
|
|
func (m NoInstrumentParties) HasInstrumentPartyIDSource() bool {
|
|
return m.Has(tag.InstrumentPartyIDSource)
|
|
}
|
|
|
|
// HasInstrumentPartyRole returns true if InstrumentPartyRole is present, Tag 1051.
|
|
func (m NoInstrumentParties) HasInstrumentPartyRole() bool {
|
|
return m.Has(tag.InstrumentPartyRole)
|
|
}
|
|
|
|
// HasNoInstrumentPartySubIDs returns true if NoInstrumentPartySubIDs is present, Tag 1052.
|
|
func (m NoInstrumentParties) HasNoInstrumentPartySubIDs() bool {
|
|
return m.Has(tag.NoInstrumentPartySubIDs)
|
|
}
|
|
|
|
// NoInstrumentPartySubIDs is a repeating group element, Tag 1052.
|
|
type NoInstrumentPartySubIDs struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetInstrumentPartySubID sets InstrumentPartySubID, Tag 1053.
|
|
func (m NoInstrumentPartySubIDs) SetInstrumentPartySubID(v string) {
|
|
m.Set(field.NewInstrumentPartySubID(v))
|
|
}
|
|
|
|
// SetInstrumentPartySubIDType sets InstrumentPartySubIDType, Tag 1054.
|
|
func (m NoInstrumentPartySubIDs) SetInstrumentPartySubIDType(v int) {
|
|
m.Set(field.NewInstrumentPartySubIDType(v))
|
|
}
|
|
|
|
// GetInstrumentPartySubID gets InstrumentPartySubID, Tag 1053.
|
|
func (m NoInstrumentPartySubIDs) GetInstrumentPartySubID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.InstrumentPartySubIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetInstrumentPartySubIDType gets InstrumentPartySubIDType, Tag 1054.
|
|
func (m NoInstrumentPartySubIDs) GetInstrumentPartySubIDType() (v int, err quickfix.MessageRejectError) {
|
|
var f field.InstrumentPartySubIDTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasInstrumentPartySubID returns true if InstrumentPartySubID is present, Tag 1053.
|
|
func (m NoInstrumentPartySubIDs) HasInstrumentPartySubID() bool {
|
|
return m.Has(tag.InstrumentPartySubID)
|
|
}
|
|
|
|
// HasInstrumentPartySubIDType returns true if InstrumentPartySubIDType is present, Tag 1054.
|
|
func (m NoInstrumentPartySubIDs) HasInstrumentPartySubIDType() bool {
|
|
return m.Has(tag.InstrumentPartySubIDType)
|
|
}
|
|
|
|
// NoInstrumentPartySubIDsRepeatingGroup is a repeating group, Tag 1052.
|
|
type NoInstrumentPartySubIDsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoInstrumentPartySubIDsRepeatingGroup returns an initialized, NoInstrumentPartySubIDsRepeatingGroup.
|
|
func NewNoInstrumentPartySubIDsRepeatingGroup() NoInstrumentPartySubIDsRepeatingGroup {
|
|
return NoInstrumentPartySubIDsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoInstrumentPartySubIDs,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.InstrumentPartySubID),
|
|
quickfix.GroupElement(tag.InstrumentPartySubIDType),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoInstrumentPartySubIDs to this group.
|
|
func (m NoInstrumentPartySubIDsRepeatingGroup) Add() NoInstrumentPartySubIDs {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoInstrumentPartySubIDs{g}
|
|
}
|
|
|
|
// Get returns the ith NoInstrumentPartySubIDs in the NoInstrumentPartySubIDsRepeatinGroup.
|
|
func (m NoInstrumentPartySubIDsRepeatingGroup) Get(i int) NoInstrumentPartySubIDs {
|
|
return NoInstrumentPartySubIDs{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoInstrumentPartiesRepeatingGroup is a repeating group, Tag 1018.
|
|
type NoInstrumentPartiesRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoInstrumentPartiesRepeatingGroup returns an initialized, NoInstrumentPartiesRepeatingGroup.
|
|
func NewNoInstrumentPartiesRepeatingGroup() NoInstrumentPartiesRepeatingGroup {
|
|
return NoInstrumentPartiesRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoInstrumentParties,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.InstrumentPartyID),
|
|
quickfix.GroupElement(tag.InstrumentPartyIDSource),
|
|
quickfix.GroupElement(tag.InstrumentPartyRole),
|
|
NewNoInstrumentPartySubIDsRepeatingGroup(),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoInstrumentParties to this group.
|
|
func (m NoInstrumentPartiesRepeatingGroup) Add() NoInstrumentParties {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoInstrumentParties{g}
|
|
}
|
|
|
|
// Get returns the ith NoInstrumentParties in the NoInstrumentPartiesRepeatinGroup.
|
|
func (m NoInstrumentPartiesRepeatingGroup) Get(i int) NoInstrumentParties {
|
|
return NoInstrumentParties{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoComplexEvents is a repeating group element, Tag 1483.
|
|
type NoComplexEvents struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetComplexEventType sets ComplexEventType, Tag 1484.
|
|
func (m NoComplexEvents) SetComplexEventType(v enum.ComplexEventType) {
|
|
m.Set(field.NewComplexEventType(v))
|
|
}
|
|
|
|
// SetComplexOptPayoutAmount sets ComplexOptPayoutAmount, Tag 1485.
|
|
func (m NoComplexEvents) SetComplexOptPayoutAmount(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewComplexOptPayoutAmount(value, scale))
|
|
}
|
|
|
|
// SetComplexEventPrice sets ComplexEventPrice, Tag 1486.
|
|
func (m NoComplexEvents) SetComplexEventPrice(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewComplexEventPrice(value, scale))
|
|
}
|
|
|
|
// SetComplexEventPriceBoundaryMethod sets ComplexEventPriceBoundaryMethod, Tag 1487.
|
|
func (m NoComplexEvents) SetComplexEventPriceBoundaryMethod(v enum.ComplexEventPriceBoundaryMethod) {
|
|
m.Set(field.NewComplexEventPriceBoundaryMethod(v))
|
|
}
|
|
|
|
// SetComplexEventPriceBoundaryPrecision sets ComplexEventPriceBoundaryPrecision, Tag 1488.
|
|
func (m NoComplexEvents) SetComplexEventPriceBoundaryPrecision(value decimal.Decimal, scale int32) {
|
|
m.Set(field.NewComplexEventPriceBoundaryPrecision(value, scale))
|
|
}
|
|
|
|
// SetComplexEventPriceTimeType sets ComplexEventPriceTimeType, Tag 1489.
|
|
func (m NoComplexEvents) SetComplexEventPriceTimeType(v enum.ComplexEventPriceTimeType) {
|
|
m.Set(field.NewComplexEventPriceTimeType(v))
|
|
}
|
|
|
|
// SetComplexEventCondition sets ComplexEventCondition, Tag 1490.
|
|
func (m NoComplexEvents) SetComplexEventCondition(v enum.ComplexEventCondition) {
|
|
m.Set(field.NewComplexEventCondition(v))
|
|
}
|
|
|
|
// SetNoComplexEventDates sets NoComplexEventDates, Tag 1491.
|
|
func (m NoComplexEvents) SetNoComplexEventDates(f NoComplexEventDatesRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// GetComplexEventType gets ComplexEventType, Tag 1484.
|
|
func (m NoComplexEvents) GetComplexEventType() (v enum.ComplexEventType, err quickfix.MessageRejectError) {
|
|
var f field.ComplexEventTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetComplexOptPayoutAmount gets ComplexOptPayoutAmount, Tag 1485.
|
|
func (m NoComplexEvents) GetComplexOptPayoutAmount() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ComplexOptPayoutAmountField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetComplexEventPrice gets ComplexEventPrice, Tag 1486.
|
|
func (m NoComplexEvents) GetComplexEventPrice() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ComplexEventPriceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetComplexEventPriceBoundaryMethod gets ComplexEventPriceBoundaryMethod, Tag 1487.
|
|
func (m NoComplexEvents) GetComplexEventPriceBoundaryMethod() (v enum.ComplexEventPriceBoundaryMethod, err quickfix.MessageRejectError) {
|
|
var f field.ComplexEventPriceBoundaryMethodField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetComplexEventPriceBoundaryPrecision gets ComplexEventPriceBoundaryPrecision, Tag 1488.
|
|
func (m NoComplexEvents) GetComplexEventPriceBoundaryPrecision() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
|
var f field.ComplexEventPriceBoundaryPrecisionField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetComplexEventPriceTimeType gets ComplexEventPriceTimeType, Tag 1489.
|
|
func (m NoComplexEvents) GetComplexEventPriceTimeType() (v enum.ComplexEventPriceTimeType, err quickfix.MessageRejectError) {
|
|
var f field.ComplexEventPriceTimeTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetComplexEventCondition gets ComplexEventCondition, Tag 1490.
|
|
func (m NoComplexEvents) GetComplexEventCondition() (v enum.ComplexEventCondition, err quickfix.MessageRejectError) {
|
|
var f field.ComplexEventConditionField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoComplexEventDates gets NoComplexEventDates, Tag 1491.
|
|
func (m NoComplexEvents) GetNoComplexEventDates() (NoComplexEventDatesRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoComplexEventDatesRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// HasComplexEventType returns true if ComplexEventType is present, Tag 1484.
|
|
func (m NoComplexEvents) HasComplexEventType() bool {
|
|
return m.Has(tag.ComplexEventType)
|
|
}
|
|
|
|
// HasComplexOptPayoutAmount returns true if ComplexOptPayoutAmount is present, Tag 1485.
|
|
func (m NoComplexEvents) HasComplexOptPayoutAmount() bool {
|
|
return m.Has(tag.ComplexOptPayoutAmount)
|
|
}
|
|
|
|
// HasComplexEventPrice returns true if ComplexEventPrice is present, Tag 1486.
|
|
func (m NoComplexEvents) HasComplexEventPrice() bool {
|
|
return m.Has(tag.ComplexEventPrice)
|
|
}
|
|
|
|
// HasComplexEventPriceBoundaryMethod returns true if ComplexEventPriceBoundaryMethod is present, Tag 1487.
|
|
func (m NoComplexEvents) HasComplexEventPriceBoundaryMethod() bool {
|
|
return m.Has(tag.ComplexEventPriceBoundaryMethod)
|
|
}
|
|
|
|
// HasComplexEventPriceBoundaryPrecision returns true if ComplexEventPriceBoundaryPrecision is present, Tag 1488.
|
|
func (m NoComplexEvents) HasComplexEventPriceBoundaryPrecision() bool {
|
|
return m.Has(tag.ComplexEventPriceBoundaryPrecision)
|
|
}
|
|
|
|
// HasComplexEventPriceTimeType returns true if ComplexEventPriceTimeType is present, Tag 1489.
|
|
func (m NoComplexEvents) HasComplexEventPriceTimeType() bool {
|
|
return m.Has(tag.ComplexEventPriceTimeType)
|
|
}
|
|
|
|
// HasComplexEventCondition returns true if ComplexEventCondition is present, Tag 1490.
|
|
func (m NoComplexEvents) HasComplexEventCondition() bool {
|
|
return m.Has(tag.ComplexEventCondition)
|
|
}
|
|
|
|
// HasNoComplexEventDates returns true if NoComplexEventDates is present, Tag 1491.
|
|
func (m NoComplexEvents) HasNoComplexEventDates() bool {
|
|
return m.Has(tag.NoComplexEventDates)
|
|
}
|
|
|
|
// NoComplexEventDates is a repeating group element, Tag 1491.
|
|
type NoComplexEventDates struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetComplexEventStartDate sets ComplexEventStartDate, Tag 1492.
|
|
func (m NoComplexEventDates) SetComplexEventStartDate(v time.Time) {
|
|
m.Set(field.NewComplexEventStartDate(v))
|
|
}
|
|
|
|
// SetComplexEventEndDate sets ComplexEventEndDate, Tag 1493.
|
|
func (m NoComplexEventDates) SetComplexEventEndDate(v time.Time) {
|
|
m.Set(field.NewComplexEventEndDate(v))
|
|
}
|
|
|
|
// SetNoComplexEventTimes sets NoComplexEventTimes, Tag 1494.
|
|
func (m NoComplexEventDates) SetNoComplexEventTimes(f NoComplexEventTimesRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// GetComplexEventStartDate gets ComplexEventStartDate, Tag 1492.
|
|
func (m NoComplexEventDates) GetComplexEventStartDate() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.ComplexEventStartDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetComplexEventEndDate gets ComplexEventEndDate, Tag 1493.
|
|
func (m NoComplexEventDates) GetComplexEventEndDate() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.ComplexEventEndDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoComplexEventTimes gets NoComplexEventTimes, Tag 1494.
|
|
func (m NoComplexEventDates) GetNoComplexEventTimes() (NoComplexEventTimesRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoComplexEventTimesRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// HasComplexEventStartDate returns true if ComplexEventStartDate is present, Tag 1492.
|
|
func (m NoComplexEventDates) HasComplexEventStartDate() bool {
|
|
return m.Has(tag.ComplexEventStartDate)
|
|
}
|
|
|
|
// HasComplexEventEndDate returns true if ComplexEventEndDate is present, Tag 1493.
|
|
func (m NoComplexEventDates) HasComplexEventEndDate() bool {
|
|
return m.Has(tag.ComplexEventEndDate)
|
|
}
|
|
|
|
// HasNoComplexEventTimes returns true if NoComplexEventTimes is present, Tag 1494.
|
|
func (m NoComplexEventDates) HasNoComplexEventTimes() bool {
|
|
return m.Has(tag.NoComplexEventTimes)
|
|
}
|
|
|
|
// NoComplexEventTimes is a repeating group element, Tag 1494.
|
|
type NoComplexEventTimes struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetComplexEventStartTime sets ComplexEventStartTime, Tag 1495.
|
|
func (m NoComplexEventTimes) SetComplexEventStartTime(v string) {
|
|
m.Set(field.NewComplexEventStartTime(v))
|
|
}
|
|
|
|
// SetComplexEventEndTime sets ComplexEventEndTime, Tag 1496.
|
|
func (m NoComplexEventTimes) SetComplexEventEndTime(v string) {
|
|
m.Set(field.NewComplexEventEndTime(v))
|
|
}
|
|
|
|
// GetComplexEventStartTime gets ComplexEventStartTime, Tag 1495.
|
|
func (m NoComplexEventTimes) GetComplexEventStartTime() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ComplexEventStartTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetComplexEventEndTime gets ComplexEventEndTime, Tag 1496.
|
|
func (m NoComplexEventTimes) GetComplexEventEndTime() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ComplexEventEndTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasComplexEventStartTime returns true if ComplexEventStartTime is present, Tag 1495.
|
|
func (m NoComplexEventTimes) HasComplexEventStartTime() bool {
|
|
return m.Has(tag.ComplexEventStartTime)
|
|
}
|
|
|
|
// HasComplexEventEndTime returns true if ComplexEventEndTime is present, Tag 1496.
|
|
func (m NoComplexEventTimes) HasComplexEventEndTime() bool {
|
|
return m.Has(tag.ComplexEventEndTime)
|
|
}
|
|
|
|
// NoComplexEventTimesRepeatingGroup is a repeating group, Tag 1494.
|
|
type NoComplexEventTimesRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoComplexEventTimesRepeatingGroup returns an initialized, NoComplexEventTimesRepeatingGroup.
|
|
func NewNoComplexEventTimesRepeatingGroup() NoComplexEventTimesRepeatingGroup {
|
|
return NoComplexEventTimesRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoComplexEventTimes,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.ComplexEventStartTime),
|
|
quickfix.GroupElement(tag.ComplexEventEndTime),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoComplexEventTimes to this group.
|
|
func (m NoComplexEventTimesRepeatingGroup) Add() NoComplexEventTimes {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoComplexEventTimes{g}
|
|
}
|
|
|
|
// Get returns the ith NoComplexEventTimes in the NoComplexEventTimesRepeatinGroup.
|
|
func (m NoComplexEventTimesRepeatingGroup) Get(i int) NoComplexEventTimes {
|
|
return NoComplexEventTimes{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoComplexEventDatesRepeatingGroup is a repeating group, Tag 1491.
|
|
type NoComplexEventDatesRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoComplexEventDatesRepeatingGroup returns an initialized, NoComplexEventDatesRepeatingGroup.
|
|
func NewNoComplexEventDatesRepeatingGroup() NoComplexEventDatesRepeatingGroup {
|
|
return NoComplexEventDatesRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoComplexEventDates,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.ComplexEventStartDate),
|
|
quickfix.GroupElement(tag.ComplexEventEndDate),
|
|
NewNoComplexEventTimesRepeatingGroup(),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoComplexEventDates to this group.
|
|
func (m NoComplexEventDatesRepeatingGroup) Add() NoComplexEventDates {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoComplexEventDates{g}
|
|
}
|
|
|
|
// Get returns the ith NoComplexEventDates in the NoComplexEventDatesRepeatinGroup.
|
|
func (m NoComplexEventDatesRepeatingGroup) Get(i int) NoComplexEventDates {
|
|
return NoComplexEventDates{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoComplexEventsRepeatingGroup is a repeating group, Tag 1483.
|
|
type NoComplexEventsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoComplexEventsRepeatingGroup returns an initialized, NoComplexEventsRepeatingGroup.
|
|
func NewNoComplexEventsRepeatingGroup() NoComplexEventsRepeatingGroup {
|
|
return NoComplexEventsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoComplexEvents,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.ComplexEventType),
|
|
quickfix.GroupElement(tag.ComplexOptPayoutAmount),
|
|
quickfix.GroupElement(tag.ComplexEventPrice),
|
|
quickfix.GroupElement(tag.ComplexEventPriceBoundaryMethod),
|
|
quickfix.GroupElement(tag.ComplexEventPriceBoundaryPrecision),
|
|
quickfix.GroupElement(tag.ComplexEventPriceTimeType),
|
|
quickfix.GroupElement(tag.ComplexEventCondition),
|
|
NewNoComplexEventDatesRepeatingGroup(),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoComplexEvents to this group.
|
|
func (m NoComplexEventsRepeatingGroup) Add() NoComplexEvents {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoComplexEvents{g}
|
|
}
|
|
|
|
// Get returns the ith NoComplexEvents in the NoComplexEventsRepeatinGroup.
|
|
func (m NoComplexEventsRepeatingGroup) Get(i int) NoComplexEvents {
|
|
return NoComplexEvents{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoPartyIDs is a repeating group element, Tag 453.
|
|
type NoPartyIDs struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetPartyID sets PartyID, Tag 448.
|
|
func (m NoPartyIDs) SetPartyID(v string) {
|
|
m.Set(field.NewPartyID(v))
|
|
}
|
|
|
|
// SetPartyIDSource sets PartyIDSource, Tag 447.
|
|
func (m NoPartyIDs) SetPartyIDSource(v enum.PartyIDSource) {
|
|
m.Set(field.NewPartyIDSource(v))
|
|
}
|
|
|
|
// SetPartyRole sets PartyRole, Tag 452.
|
|
func (m NoPartyIDs) SetPartyRole(v enum.PartyRole) {
|
|
m.Set(field.NewPartyRole(v))
|
|
}
|
|
|
|
// SetNoPartySubIDs sets NoPartySubIDs, Tag 802.
|
|
func (m NoPartyIDs) SetNoPartySubIDs(f NoPartySubIDsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// GetPartyID gets PartyID, Tag 448.
|
|
func (m NoPartyIDs) GetPartyID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.PartyIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPartyIDSource gets PartyIDSource, Tag 447.
|
|
func (m NoPartyIDs) GetPartyIDSource() (v enum.PartyIDSource, err quickfix.MessageRejectError) {
|
|
var f field.PartyIDSourceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPartyRole gets PartyRole, Tag 452.
|
|
func (m NoPartyIDs) GetPartyRole() (v enum.PartyRole, err quickfix.MessageRejectError) {
|
|
var f field.PartyRoleField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoPartySubIDs gets NoPartySubIDs, Tag 802.
|
|
func (m NoPartyIDs) GetNoPartySubIDs() (NoPartySubIDsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoPartySubIDsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// HasPartyID returns true if PartyID is present, Tag 448.
|
|
func (m NoPartyIDs) HasPartyID() bool {
|
|
return m.Has(tag.PartyID)
|
|
}
|
|
|
|
// HasPartyIDSource returns true if PartyIDSource is present, Tag 447.
|
|
func (m NoPartyIDs) HasPartyIDSource() bool {
|
|
return m.Has(tag.PartyIDSource)
|
|
}
|
|
|
|
// HasPartyRole returns true if PartyRole is present, Tag 452.
|
|
func (m NoPartyIDs) HasPartyRole() bool {
|
|
return m.Has(tag.PartyRole)
|
|
}
|
|
|
|
// HasNoPartySubIDs returns true if NoPartySubIDs is present, Tag 802.
|
|
func (m NoPartyIDs) HasNoPartySubIDs() bool {
|
|
return m.Has(tag.NoPartySubIDs)
|
|
}
|
|
|
|
// NoPartySubIDs is a repeating group element, Tag 802.
|
|
type NoPartySubIDs struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetPartySubID sets PartySubID, Tag 523.
|
|
func (m NoPartySubIDs) SetPartySubID(v string) {
|
|
m.Set(field.NewPartySubID(v))
|
|
}
|
|
|
|
// SetPartySubIDType sets PartySubIDType, Tag 803.
|
|
func (m NoPartySubIDs) SetPartySubIDType(v enum.PartySubIDType) {
|
|
m.Set(field.NewPartySubIDType(v))
|
|
}
|
|
|
|
// GetPartySubID gets PartySubID, Tag 523.
|
|
func (m NoPartySubIDs) GetPartySubID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.PartySubIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetPartySubIDType gets PartySubIDType, Tag 803.
|
|
func (m NoPartySubIDs) GetPartySubIDType() (v enum.PartySubIDType, err quickfix.MessageRejectError) {
|
|
var f field.PartySubIDTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasPartySubID returns true if PartySubID is present, Tag 523.
|
|
func (m NoPartySubIDs) HasPartySubID() bool {
|
|
return m.Has(tag.PartySubID)
|
|
}
|
|
|
|
// HasPartySubIDType returns true if PartySubIDType is present, Tag 803.
|
|
func (m NoPartySubIDs) HasPartySubIDType() bool {
|
|
return m.Has(tag.PartySubIDType)
|
|
}
|
|
|
|
// NoPartySubIDsRepeatingGroup is a repeating group, Tag 802.
|
|
type NoPartySubIDsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoPartySubIDsRepeatingGroup returns an initialized, NoPartySubIDsRepeatingGroup.
|
|
func NewNoPartySubIDsRepeatingGroup() NoPartySubIDsRepeatingGroup {
|
|
return NoPartySubIDsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoPartySubIDs,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.PartySubID),
|
|
quickfix.GroupElement(tag.PartySubIDType),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoPartySubIDs to this group.
|
|
func (m NoPartySubIDsRepeatingGroup) Add() NoPartySubIDs {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoPartySubIDs{g}
|
|
}
|
|
|
|
// Get returns the ith NoPartySubIDs in the NoPartySubIDsRepeatinGroup.
|
|
func (m NoPartySubIDsRepeatingGroup) Get(i int) NoPartySubIDs {
|
|
return NoPartySubIDs{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoPartyIDsRepeatingGroup is a repeating group, Tag 453.
|
|
type NoPartyIDsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoPartyIDsRepeatingGroup returns an initialized, NoPartyIDsRepeatingGroup.
|
|
func NewNoPartyIDsRepeatingGroup() NoPartyIDsRepeatingGroup {
|
|
return NoPartyIDsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoPartyIDs,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.PartyID),
|
|
quickfix.GroupElement(tag.PartyIDSource),
|
|
quickfix.GroupElement(tag.PartyRole),
|
|
NewNoPartySubIDsRepeatingGroup(),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoPartyIDs to this group.
|
|
func (m NoPartyIDsRepeatingGroup) Add() NoPartyIDs {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoPartyIDs{g}
|
|
}
|
|
|
|
// Get returns the ith NoPartyIDs in the NoPartyIDsRepeatinGroup.
|
|
func (m NoPartyIDsRepeatingGroup) Get(i int) NoPartyIDs {
|
|
return NoPartyIDs{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoSettlDetails is a repeating group element, Tag 1158.
|
|
type NoSettlDetails struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetSettlObligSource sets SettlObligSource, Tag 1164.
|
|
func (m NoSettlDetails) SetSettlObligSource(v enum.SettlObligSource) {
|
|
m.Set(field.NewSettlObligSource(v))
|
|
}
|
|
|
|
// SetNoSettlPartyIDs sets NoSettlPartyIDs, Tag 781.
|
|
func (m NoSettlDetails) SetNoSettlPartyIDs(f NoSettlPartyIDsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// GetSettlObligSource gets SettlObligSource, Tag 1164.
|
|
func (m NoSettlDetails) GetSettlObligSource() (v enum.SettlObligSource, err quickfix.MessageRejectError) {
|
|
var f field.SettlObligSourceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoSettlPartyIDs gets NoSettlPartyIDs, Tag 781.
|
|
func (m NoSettlDetails) GetNoSettlPartyIDs() (NoSettlPartyIDsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoSettlPartyIDsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// HasSettlObligSource returns true if SettlObligSource is present, Tag 1164.
|
|
func (m NoSettlDetails) HasSettlObligSource() bool {
|
|
return m.Has(tag.SettlObligSource)
|
|
}
|
|
|
|
// HasNoSettlPartyIDs returns true if NoSettlPartyIDs is present, Tag 781.
|
|
func (m NoSettlDetails) HasNoSettlPartyIDs() bool {
|
|
return m.Has(tag.NoSettlPartyIDs)
|
|
}
|
|
|
|
// NoSettlPartyIDs is a repeating group element, Tag 781.
|
|
type NoSettlPartyIDs struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetSettlPartyID sets SettlPartyID, Tag 782.
|
|
func (m NoSettlPartyIDs) SetSettlPartyID(v string) {
|
|
m.Set(field.NewSettlPartyID(v))
|
|
}
|
|
|
|
// SetSettlPartyIDSource sets SettlPartyIDSource, Tag 783.
|
|
func (m NoSettlPartyIDs) SetSettlPartyIDSource(v string) {
|
|
m.Set(field.NewSettlPartyIDSource(v))
|
|
}
|
|
|
|
// SetSettlPartyRole sets SettlPartyRole, Tag 784.
|
|
func (m NoSettlPartyIDs) SetSettlPartyRole(v int) {
|
|
m.Set(field.NewSettlPartyRole(v))
|
|
}
|
|
|
|
// SetNoSettlPartySubIDs sets NoSettlPartySubIDs, Tag 801.
|
|
func (m NoSettlPartyIDs) SetNoSettlPartySubIDs(f NoSettlPartySubIDsRepeatingGroup) {
|
|
m.SetGroup(f)
|
|
}
|
|
|
|
// GetSettlPartyID gets SettlPartyID, Tag 782.
|
|
func (m NoSettlPartyIDs) GetSettlPartyID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettlPartyIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlPartyIDSource gets SettlPartyIDSource, Tag 783.
|
|
func (m NoSettlPartyIDs) GetSettlPartyIDSource() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettlPartyIDSourceField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlPartyRole gets SettlPartyRole, Tag 784.
|
|
func (m NoSettlPartyIDs) GetSettlPartyRole() (v int, err quickfix.MessageRejectError) {
|
|
var f field.SettlPartyRoleField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetNoSettlPartySubIDs gets NoSettlPartySubIDs, Tag 801.
|
|
func (m NoSettlPartyIDs) GetNoSettlPartySubIDs() (NoSettlPartySubIDsRepeatingGroup, quickfix.MessageRejectError) {
|
|
f := NewNoSettlPartySubIDsRepeatingGroup()
|
|
err := m.GetGroup(f)
|
|
return f, err
|
|
}
|
|
|
|
// HasSettlPartyID returns true if SettlPartyID is present, Tag 782.
|
|
func (m NoSettlPartyIDs) HasSettlPartyID() bool {
|
|
return m.Has(tag.SettlPartyID)
|
|
}
|
|
|
|
// HasSettlPartyIDSource returns true if SettlPartyIDSource is present, Tag 783.
|
|
func (m NoSettlPartyIDs) HasSettlPartyIDSource() bool {
|
|
return m.Has(tag.SettlPartyIDSource)
|
|
}
|
|
|
|
// HasSettlPartyRole returns true if SettlPartyRole is present, Tag 784.
|
|
func (m NoSettlPartyIDs) HasSettlPartyRole() bool {
|
|
return m.Has(tag.SettlPartyRole)
|
|
}
|
|
|
|
// HasNoSettlPartySubIDs returns true if NoSettlPartySubIDs is present, Tag 801.
|
|
func (m NoSettlPartyIDs) HasNoSettlPartySubIDs() bool {
|
|
return m.Has(tag.NoSettlPartySubIDs)
|
|
}
|
|
|
|
// NoSettlPartySubIDs is a repeating group element, Tag 801.
|
|
type NoSettlPartySubIDs struct {
|
|
*quickfix.Group
|
|
}
|
|
|
|
// SetSettlPartySubID sets SettlPartySubID, Tag 785.
|
|
func (m NoSettlPartySubIDs) SetSettlPartySubID(v string) {
|
|
m.Set(field.NewSettlPartySubID(v))
|
|
}
|
|
|
|
// SetSettlPartySubIDType sets SettlPartySubIDType, Tag 786.
|
|
func (m NoSettlPartySubIDs) SetSettlPartySubIDType(v int) {
|
|
m.Set(field.NewSettlPartySubIDType(v))
|
|
}
|
|
|
|
// GetSettlPartySubID gets SettlPartySubID, Tag 785.
|
|
func (m NoSettlPartySubIDs) GetSettlPartySubID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.SettlPartySubIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetSettlPartySubIDType gets SettlPartySubIDType, Tag 786.
|
|
func (m NoSettlPartySubIDs) GetSettlPartySubIDType() (v int, err quickfix.MessageRejectError) {
|
|
var f field.SettlPartySubIDTypeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasSettlPartySubID returns true if SettlPartySubID is present, Tag 785.
|
|
func (m NoSettlPartySubIDs) HasSettlPartySubID() bool {
|
|
return m.Has(tag.SettlPartySubID)
|
|
}
|
|
|
|
// HasSettlPartySubIDType returns true if SettlPartySubIDType is present, Tag 786.
|
|
func (m NoSettlPartySubIDs) HasSettlPartySubIDType() bool {
|
|
return m.Has(tag.SettlPartySubIDType)
|
|
}
|
|
|
|
// NoSettlPartySubIDsRepeatingGroup is a repeating group, Tag 801.
|
|
type NoSettlPartySubIDsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoSettlPartySubIDsRepeatingGroup returns an initialized, NoSettlPartySubIDsRepeatingGroup.
|
|
func NewNoSettlPartySubIDsRepeatingGroup() NoSettlPartySubIDsRepeatingGroup {
|
|
return NoSettlPartySubIDsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoSettlPartySubIDs,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.SettlPartySubID),
|
|
quickfix.GroupElement(tag.SettlPartySubIDType),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoSettlPartySubIDs to this group.
|
|
func (m NoSettlPartySubIDsRepeatingGroup) Add() NoSettlPartySubIDs {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoSettlPartySubIDs{g}
|
|
}
|
|
|
|
// Get returns the ith NoSettlPartySubIDs in the NoSettlPartySubIDsRepeatinGroup.
|
|
func (m NoSettlPartySubIDsRepeatingGroup) Get(i int) NoSettlPartySubIDs {
|
|
return NoSettlPartySubIDs{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoSettlPartyIDsRepeatingGroup is a repeating group, Tag 781.
|
|
type NoSettlPartyIDsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoSettlPartyIDsRepeatingGroup returns an initialized, NoSettlPartyIDsRepeatingGroup.
|
|
func NewNoSettlPartyIDsRepeatingGroup() NoSettlPartyIDsRepeatingGroup {
|
|
return NoSettlPartyIDsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoSettlPartyIDs,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.SettlPartyID),
|
|
quickfix.GroupElement(tag.SettlPartyIDSource),
|
|
quickfix.GroupElement(tag.SettlPartyRole),
|
|
NewNoSettlPartySubIDsRepeatingGroup(),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoSettlPartyIDs to this group.
|
|
func (m NoSettlPartyIDsRepeatingGroup) Add() NoSettlPartyIDs {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoSettlPartyIDs{g}
|
|
}
|
|
|
|
// Get returns the ith NoSettlPartyIDs in the NoSettlPartyIDsRepeatinGroup.
|
|
func (m NoSettlPartyIDsRepeatingGroup) Get(i int) NoSettlPartyIDs {
|
|
return NoSettlPartyIDs{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoSettlDetailsRepeatingGroup is a repeating group, Tag 1158.
|
|
type NoSettlDetailsRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoSettlDetailsRepeatingGroup returns an initialized, NoSettlDetailsRepeatingGroup.
|
|
func NewNoSettlDetailsRepeatingGroup() NoSettlDetailsRepeatingGroup {
|
|
return NoSettlDetailsRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoSettlDetails,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.SettlObligSource),
|
|
NewNoSettlPartyIDsRepeatingGroup(),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoSettlDetails to this group.
|
|
func (m NoSettlDetailsRepeatingGroup) Add() NoSettlDetails {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoSettlDetails{g}
|
|
}
|
|
|
|
// Get returns the ith NoSettlDetails in the NoSettlDetailsRepeatinGroup.
|
|
func (m NoSettlDetailsRepeatingGroup) Get(i int) NoSettlDetails {
|
|
return NoSettlDetails{m.RepeatingGroup.Get(i)}
|
|
}
|
|
|
|
// NoSettlObligRepeatingGroup is a repeating group, Tag 1165.
|
|
type NoSettlObligRepeatingGroup struct {
|
|
*quickfix.RepeatingGroup
|
|
}
|
|
|
|
// NewNoSettlObligRepeatingGroup returns an initialized, NoSettlObligRepeatingGroup.
|
|
func NewNoSettlObligRepeatingGroup() NoSettlObligRepeatingGroup {
|
|
return NoSettlObligRepeatingGroup{
|
|
quickfix.NewRepeatingGroup(
|
|
tag.NoSettlOblig,
|
|
quickfix.GroupTemplate{
|
|
quickfix.GroupElement(tag.NetGrossInd),
|
|
quickfix.GroupElement(tag.SettlObligID),
|
|
quickfix.GroupElement(tag.SettlObligTransType),
|
|
quickfix.GroupElement(tag.SettlObligRefID),
|
|
quickfix.GroupElement(tag.CcyAmt),
|
|
quickfix.GroupElement(tag.SettlCurrAmt),
|
|
quickfix.GroupElement(tag.Currency),
|
|
quickfix.GroupElement(tag.SettlCurrency),
|
|
quickfix.GroupElement(tag.SettlCurrFxRate),
|
|
quickfix.GroupElement(tag.SettlDate),
|
|
quickfix.GroupElement(tag.Symbol),
|
|
quickfix.GroupElement(tag.SymbolSfx),
|
|
quickfix.GroupElement(tag.SecurityID),
|
|
quickfix.GroupElement(tag.SecurityIDSource),
|
|
NewNoSecurityAltIDRepeatingGroup(),
|
|
quickfix.GroupElement(tag.Product),
|
|
quickfix.GroupElement(tag.CFICode),
|
|
quickfix.GroupElement(tag.SecurityType),
|
|
quickfix.GroupElement(tag.SecuritySubType),
|
|
quickfix.GroupElement(tag.MaturityMonthYear),
|
|
quickfix.GroupElement(tag.MaturityDate),
|
|
quickfix.GroupElement(tag.CouponPaymentDate),
|
|
quickfix.GroupElement(tag.IssueDate),
|
|
quickfix.GroupElement(tag.RepoCollateralSecurityType),
|
|
quickfix.GroupElement(tag.RepurchaseTerm),
|
|
quickfix.GroupElement(tag.RepurchaseRate),
|
|
quickfix.GroupElement(tag.Factor),
|
|
quickfix.GroupElement(tag.CreditRating),
|
|
quickfix.GroupElement(tag.InstrRegistry),
|
|
quickfix.GroupElement(tag.CountryOfIssue),
|
|
quickfix.GroupElement(tag.StateOrProvinceOfIssue),
|
|
quickfix.GroupElement(tag.LocaleOfIssue),
|
|
quickfix.GroupElement(tag.RedemptionDate),
|
|
quickfix.GroupElement(tag.StrikePrice),
|
|
quickfix.GroupElement(tag.StrikeCurrency),
|
|
quickfix.GroupElement(tag.OptAttribute),
|
|
quickfix.GroupElement(tag.ContractMultiplier),
|
|
quickfix.GroupElement(tag.CouponRate),
|
|
quickfix.GroupElement(tag.SecurityExchange),
|
|
quickfix.GroupElement(tag.Issuer),
|
|
quickfix.GroupElement(tag.EncodedIssuerLen),
|
|
quickfix.GroupElement(tag.EncodedIssuer),
|
|
quickfix.GroupElement(tag.SecurityDesc),
|
|
quickfix.GroupElement(tag.EncodedSecurityDescLen),
|
|
quickfix.GroupElement(tag.EncodedSecurityDesc),
|
|
quickfix.GroupElement(tag.Pool),
|
|
quickfix.GroupElement(tag.ContractSettlMonth),
|
|
quickfix.GroupElement(tag.CPProgram),
|
|
quickfix.GroupElement(tag.CPRegType),
|
|
NewNoEventsRepeatingGroup(),
|
|
quickfix.GroupElement(tag.DatedDate),
|
|
quickfix.GroupElement(tag.InterestAccrualDate),
|
|
quickfix.GroupElement(tag.SecurityStatus),
|
|
quickfix.GroupElement(tag.SettleOnOpenFlag),
|
|
quickfix.GroupElement(tag.InstrmtAssignmentMethod),
|
|
quickfix.GroupElement(tag.StrikeMultiplier),
|
|
quickfix.GroupElement(tag.StrikeValue),
|
|
quickfix.GroupElement(tag.MinPriceIncrement),
|
|
quickfix.GroupElement(tag.PositionLimit),
|
|
quickfix.GroupElement(tag.NTPositionLimit),
|
|
NewNoInstrumentPartiesRepeatingGroup(),
|
|
quickfix.GroupElement(tag.UnitOfMeasure),
|
|
quickfix.GroupElement(tag.TimeUnit),
|
|
quickfix.GroupElement(tag.MaturityTime),
|
|
quickfix.GroupElement(tag.SecurityGroup),
|
|
quickfix.GroupElement(tag.MinPriceIncrementAmount),
|
|
quickfix.GroupElement(tag.UnitOfMeasureQty),
|
|
quickfix.GroupElement(tag.SecurityXMLLen),
|
|
quickfix.GroupElement(tag.SecurityXML),
|
|
quickfix.GroupElement(tag.SecurityXMLSchema),
|
|
quickfix.GroupElement(tag.ProductComplex),
|
|
quickfix.GroupElement(tag.PriceUnitOfMeasure),
|
|
quickfix.GroupElement(tag.PriceUnitOfMeasureQty),
|
|
quickfix.GroupElement(tag.SettlMethod),
|
|
quickfix.GroupElement(tag.ExerciseStyle),
|
|
quickfix.GroupElement(tag.OptPayoutAmount),
|
|
quickfix.GroupElement(tag.PriceQuoteMethod),
|
|
quickfix.GroupElement(tag.ListMethod),
|
|
quickfix.GroupElement(tag.CapPrice),
|
|
quickfix.GroupElement(tag.FloorPrice),
|
|
quickfix.GroupElement(tag.PutOrCall),
|
|
quickfix.GroupElement(tag.FlexibleIndicator),
|
|
quickfix.GroupElement(tag.FlexProductEligibilityIndicator),
|
|
quickfix.GroupElement(tag.ValuationMethod),
|
|
quickfix.GroupElement(tag.ContractMultiplierUnit),
|
|
quickfix.GroupElement(tag.FlowScheduleType),
|
|
quickfix.GroupElement(tag.RestructuringType),
|
|
quickfix.GroupElement(tag.Seniority),
|
|
quickfix.GroupElement(tag.NotionalPercentageOutstanding),
|
|
quickfix.GroupElement(tag.OriginalNotionalPercentageOutstanding),
|
|
quickfix.GroupElement(tag.AttachmentPoint),
|
|
quickfix.GroupElement(tag.DetachmentPoint),
|
|
quickfix.GroupElement(tag.StrikePriceDeterminationMethod),
|
|
quickfix.GroupElement(tag.StrikePriceBoundaryMethod),
|
|
quickfix.GroupElement(tag.StrikePriceBoundaryPrecision),
|
|
quickfix.GroupElement(tag.UnderlyingPriceDeterminationMethod),
|
|
quickfix.GroupElement(tag.OptPayoutType),
|
|
NewNoComplexEventsRepeatingGroup(),
|
|
NewNoPartyIDsRepeatingGroup(),
|
|
quickfix.GroupElement(tag.EffectiveTime),
|
|
quickfix.GroupElement(tag.ExpireTime),
|
|
quickfix.GroupElement(tag.LastUpdateTime),
|
|
NewNoSettlDetailsRepeatingGroup(),
|
|
},
|
|
),
|
|
}
|
|
}
|
|
|
|
// Add create and append a new NoSettlOblig to this group.
|
|
func (m NoSettlObligRepeatingGroup) Add() NoSettlOblig {
|
|
g := m.RepeatingGroup.Add()
|
|
return NoSettlOblig{g}
|
|
}
|
|
|
|
// Get returns the ith NoSettlOblig in the NoSettlObligRepeatinGroup.
|
|
func (m NoSettlObligRepeatingGroup) Get(i int) NoSettlOblig {
|
|
return NoSettlOblig{m.RepeatingGroup.Get(i)}
|
|
}
|