// Code generated by quickfix. DO NOT EDIT. package indicationofinterest import ( "time" "github.com/shopspring/decimal" "quantex.com/qfixdpl/quickfix" "quantex.com/qfixdpl/quickfix/gen/enum" "quantex.com/qfixdpl/quickfix/gen/field" "quantex.com/qfixdpl/quickfix/gen/fix41" "quantex.com/qfixdpl/quickfix/gen/tag" ) // IndicationofInterest is the fix41 IndicationofInterest type, MsgType = 6. type IndicationofInterest struct { fix41.Header *quickfix.Body fix41.Trailer Message *quickfix.Message } // FromMessage creates a IndicationofInterest from a quickfix.Message instance. func FromMessage(m *quickfix.Message) IndicationofInterest { return IndicationofInterest{ Header: fix41.Header{Header: &m.Header}, Body: &m.Body, Trailer: fix41.Trailer{Trailer: &m.Trailer}, Message: m, } } // ToMessage returns a quickfix.Message instance. func (m IndicationofInterest) ToMessage() *quickfix.Message { return m.Message } // New returns a IndicationofInterest initialized with the required fields for IndicationofInterest. func New(ioiid field.IOIidField, ioitranstype field.IOITransTypeField, symbol field.SymbolField, side field.SideField, ioishares field.IOISharesField) (m IndicationofInterest) { m.Message = quickfix.NewMessage() m.Header = fix41.NewHeader(&m.Message.Header) m.Body = &m.Message.Body m.Trailer.Trailer = &m.Message.Trailer m.Header.Set(field.NewMsgType("6")) m.Set(ioiid) m.Set(ioitranstype) m.Set(symbol) m.Set(side) m.Set(ioishares) return } // A RouteOut is the callback type that should be implemented for routing Message. type RouteOut func(msg IndicationofInterest, 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 "FIX.4.1", "6", r } // SetCurrency sets Currency, Tag 15. func (m IndicationofInterest) SetCurrency(v string) { m.Set(field.NewCurrency(v)) } // SetIDSource sets IDSource, Tag 22. func (m IndicationofInterest) SetIDSource(v enum.IDSource) { m.Set(field.NewIDSource(v)) } // SetIOIid sets IOIid, Tag 23. func (m IndicationofInterest) SetIOIid(v string) { m.Set(field.NewIOIid(v)) } // SetIOIOthSvc sets IOIOthSvc, Tag 24. func (m IndicationofInterest) SetIOIOthSvc(v enum.IOIOthSvc) { m.Set(field.NewIOIOthSvc(v)) } // SetIOIQltyInd sets IOIQltyInd, Tag 25. func (m IndicationofInterest) SetIOIQltyInd(v enum.IOIQltyInd) { m.Set(field.NewIOIQltyInd(v)) } // SetIOIRefID sets IOIRefID, Tag 26. func (m IndicationofInterest) SetIOIRefID(v string) { m.Set(field.NewIOIRefID(v)) } // SetIOIShares sets IOIShares, Tag 27. func (m IndicationofInterest) SetIOIShares(v enum.IOIShares) { m.Set(field.NewIOIShares(v)) } // SetIOITransType sets IOITransType, Tag 28. func (m IndicationofInterest) SetIOITransType(v enum.IOITransType) { m.Set(field.NewIOITransType(v)) } // SetPrice sets Price, Tag 44. func (m IndicationofInterest) SetPrice(value decimal.Decimal, scale int32) { m.Set(field.NewPrice(value, scale)) } // SetSecurityID sets SecurityID, Tag 48. func (m IndicationofInterest) SetSecurityID(v string) { m.Set(field.NewSecurityID(v)) } // SetSide sets Side, Tag 54. func (m IndicationofInterest) SetSide(v enum.Side) { m.Set(field.NewSide(v)) } // SetSymbol sets Symbol, Tag 55. func (m IndicationofInterest) SetSymbol(v string) { m.Set(field.NewSymbol(v)) } // SetText sets Text, Tag 58. func (m IndicationofInterest) SetText(v string) { m.Set(field.NewText(v)) } // SetTransactTime sets TransactTime, Tag 60. func (m IndicationofInterest) SetTransactTime(v time.Time) { m.Set(field.NewTransactTime(v)) } // SetValidUntilTime sets ValidUntilTime, Tag 62. func (m IndicationofInterest) SetValidUntilTime(v time.Time) { m.Set(field.NewValidUntilTime(v)) } // SetSymbolSfx sets SymbolSfx, Tag 65. func (m IndicationofInterest) SetSymbolSfx(v enum.SymbolSfx) { m.Set(field.NewSymbolSfx(v)) } // SetIssuer sets Issuer, Tag 106. func (m IndicationofInterest) SetIssuer(v string) { m.Set(field.NewIssuer(v)) } // SetSecurityDesc sets SecurityDesc, Tag 107. func (m IndicationofInterest) SetSecurityDesc(v string) { m.Set(field.NewSecurityDesc(v)) } // SetIOINaturalFlag sets IOINaturalFlag, Tag 130. func (m IndicationofInterest) SetIOINaturalFlag(v bool) { m.Set(field.NewIOINaturalFlag(v)) } // SetURLLink sets URLLink, Tag 149. func (m IndicationofInterest) SetURLLink(v string) { m.Set(field.NewURLLink(v)) } // SetSecurityType sets SecurityType, Tag 167. func (m IndicationofInterest) SetSecurityType(v enum.SecurityType) { m.Set(field.NewSecurityType(v)) } // SetNoIOIQualifiers sets NoIOIQualifiers, Tag 199. func (m IndicationofInterest) SetNoIOIQualifiers(f NoIOIQualifiersRepeatingGroup) { m.SetGroup(f) } // SetMaturityMonthYear sets MaturityMonthYear, Tag 200. func (m IndicationofInterest) SetMaturityMonthYear(v string) { m.Set(field.NewMaturityMonthYear(v)) } // SetPutOrCall sets PutOrCall, Tag 201. func (m IndicationofInterest) SetPutOrCall(v enum.PutOrCall) { m.Set(field.NewPutOrCall(v)) } // SetStrikePrice sets StrikePrice, Tag 202. func (m IndicationofInterest) SetStrikePrice(value decimal.Decimal, scale int32) { m.Set(field.NewStrikePrice(value, scale)) } // SetMaturityDay sets MaturityDay, Tag 205. func (m IndicationofInterest) SetMaturityDay(v int) { m.Set(field.NewMaturityDay(v)) } // SetOptAttribute sets OptAttribute, Tag 206. func (m IndicationofInterest) SetOptAttribute(v string) { m.Set(field.NewOptAttribute(v)) } // SetSecurityExchange sets SecurityExchange, Tag 207. func (m IndicationofInterest) SetSecurityExchange(v string) { m.Set(field.NewSecurityExchange(v)) } // GetCurrency gets Currency, Tag 15. func (m IndicationofInterest) GetCurrency() (v string, err quickfix.MessageRejectError) { var f field.CurrencyField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIDSource gets IDSource, Tag 22. func (m IndicationofInterest) GetIDSource() (v enum.IDSource, err quickfix.MessageRejectError) { var f field.IDSourceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIOIid gets IOIid, Tag 23. func (m IndicationofInterest) GetIOIid() (v string, err quickfix.MessageRejectError) { var f field.IOIidField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIOIOthSvc gets IOIOthSvc, Tag 24. func (m IndicationofInterest) GetIOIOthSvc() (v enum.IOIOthSvc, err quickfix.MessageRejectError) { var f field.IOIOthSvcField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIOIQltyInd gets IOIQltyInd, Tag 25. func (m IndicationofInterest) GetIOIQltyInd() (v enum.IOIQltyInd, err quickfix.MessageRejectError) { var f field.IOIQltyIndField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIOIRefID gets IOIRefID, Tag 26. func (m IndicationofInterest) GetIOIRefID() (v string, err quickfix.MessageRejectError) { var f field.IOIRefIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIOIShares gets IOIShares, Tag 27. func (m IndicationofInterest) GetIOIShares() (v enum.IOIShares, err quickfix.MessageRejectError) { var f field.IOISharesField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIOITransType gets IOITransType, Tag 28. func (m IndicationofInterest) GetIOITransType() (v enum.IOITransType, err quickfix.MessageRejectError) { var f field.IOITransTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPrice gets Price, Tag 44. func (m IndicationofInterest) GetPrice() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.PriceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityID gets SecurityID, Tag 48. func (m IndicationofInterest) GetSecurityID() (v string, err quickfix.MessageRejectError) { var f field.SecurityIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSide gets Side, Tag 54. func (m IndicationofInterest) GetSide() (v enum.Side, err quickfix.MessageRejectError) { var f field.SideField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSymbol gets Symbol, Tag 55. func (m IndicationofInterest) GetSymbol() (v string, err quickfix.MessageRejectError) { var f field.SymbolField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetText gets Text, Tag 58. func (m IndicationofInterest) 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 IndicationofInterest) GetTransactTime() (v time.Time, err quickfix.MessageRejectError) { var f field.TransactTimeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetValidUntilTime gets ValidUntilTime, Tag 62. func (m IndicationofInterest) GetValidUntilTime() (v time.Time, err quickfix.MessageRejectError) { var f field.ValidUntilTimeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSymbolSfx gets SymbolSfx, Tag 65. func (m IndicationofInterest) GetSymbolSfx() (v enum.SymbolSfx, err quickfix.MessageRejectError) { var f field.SymbolSfxField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIssuer gets Issuer, Tag 106. func (m IndicationofInterest) GetIssuer() (v string, err quickfix.MessageRejectError) { var f field.IssuerField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityDesc gets SecurityDesc, Tag 107. func (m IndicationofInterest) GetSecurityDesc() (v string, err quickfix.MessageRejectError) { var f field.SecurityDescField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIOINaturalFlag gets IOINaturalFlag, Tag 130. func (m IndicationofInterest) GetIOINaturalFlag() (v bool, err quickfix.MessageRejectError) { var f field.IOINaturalFlagField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetURLLink gets URLLink, Tag 149. func (m IndicationofInterest) GetURLLink() (v string, err quickfix.MessageRejectError) { var f field.URLLinkField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityType gets SecurityType, Tag 167. func (m IndicationofInterest) GetSecurityType() (v enum.SecurityType, err quickfix.MessageRejectError) { var f field.SecurityTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoIOIQualifiers gets NoIOIQualifiers, Tag 199. func (m IndicationofInterest) GetNoIOIQualifiers() (NoIOIQualifiersRepeatingGroup, quickfix.MessageRejectError) { f := NewNoIOIQualifiersRepeatingGroup() err := m.GetGroup(f) return f, err } // GetMaturityMonthYear gets MaturityMonthYear, Tag 200. func (m IndicationofInterest) GetMaturityMonthYear() (v string, err quickfix.MessageRejectError) { var f field.MaturityMonthYearField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPutOrCall gets PutOrCall, Tag 201. func (m IndicationofInterest) GetPutOrCall() (v enum.PutOrCall, err quickfix.MessageRejectError) { var f field.PutOrCallField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetStrikePrice gets StrikePrice, Tag 202. func (m IndicationofInterest) GetStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.StrikePriceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetMaturityDay gets MaturityDay, Tag 205. func (m IndicationofInterest) GetMaturityDay() (v int, err quickfix.MessageRejectError) { var f field.MaturityDayField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetOptAttribute gets OptAttribute, Tag 206. func (m IndicationofInterest) GetOptAttribute() (v string, err quickfix.MessageRejectError) { var f field.OptAttributeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityExchange gets SecurityExchange, Tag 207. func (m IndicationofInterest) GetSecurityExchange() (v string, err quickfix.MessageRejectError) { var f field.SecurityExchangeField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasCurrency returns true if Currency is present, Tag 15. func (m IndicationofInterest) HasCurrency() bool { return m.Has(tag.Currency) } // HasIDSource returns true if IDSource is present, Tag 22. func (m IndicationofInterest) HasIDSource() bool { return m.Has(tag.IDSource) } // HasIOIid returns true if IOIid is present, Tag 23. func (m IndicationofInterest) HasIOIid() bool { return m.Has(tag.IOIid) } // HasIOIOthSvc returns true if IOIOthSvc is present, Tag 24. func (m IndicationofInterest) HasIOIOthSvc() bool { return m.Has(tag.IOIOthSvc) } // HasIOIQltyInd returns true if IOIQltyInd is present, Tag 25. func (m IndicationofInterest) HasIOIQltyInd() bool { return m.Has(tag.IOIQltyInd) } // HasIOIRefID returns true if IOIRefID is present, Tag 26. func (m IndicationofInterest) HasIOIRefID() bool { return m.Has(tag.IOIRefID) } // HasIOIShares returns true if IOIShares is present, Tag 27. func (m IndicationofInterest) HasIOIShares() bool { return m.Has(tag.IOIShares) } // HasIOITransType returns true if IOITransType is present, Tag 28. func (m IndicationofInterest) HasIOITransType() bool { return m.Has(tag.IOITransType) } // HasPrice returns true if Price is present, Tag 44. func (m IndicationofInterest) HasPrice() bool { return m.Has(tag.Price) } // HasSecurityID returns true if SecurityID is present, Tag 48. func (m IndicationofInterest) HasSecurityID() bool { return m.Has(tag.SecurityID) } // HasSide returns true if Side is present, Tag 54. func (m IndicationofInterest) HasSide() bool { return m.Has(tag.Side) } // HasSymbol returns true if Symbol is present, Tag 55. func (m IndicationofInterest) HasSymbol() bool { return m.Has(tag.Symbol) } // HasText returns true if Text is present, Tag 58. func (m IndicationofInterest) HasText() bool { return m.Has(tag.Text) } // HasTransactTime returns true if TransactTime is present, Tag 60. func (m IndicationofInterest) HasTransactTime() bool { return m.Has(tag.TransactTime) } // HasValidUntilTime returns true if ValidUntilTime is present, Tag 62. func (m IndicationofInterest) HasValidUntilTime() bool { return m.Has(tag.ValidUntilTime) } // HasSymbolSfx returns true if SymbolSfx is present, Tag 65. func (m IndicationofInterest) HasSymbolSfx() bool { return m.Has(tag.SymbolSfx) } // HasIssuer returns true if Issuer is present, Tag 106. func (m IndicationofInterest) HasIssuer() bool { return m.Has(tag.Issuer) } // HasSecurityDesc returns true if SecurityDesc is present, Tag 107. func (m IndicationofInterest) HasSecurityDesc() bool { return m.Has(tag.SecurityDesc) } // HasIOINaturalFlag returns true if IOINaturalFlag is present, Tag 130. func (m IndicationofInterest) HasIOINaturalFlag() bool { return m.Has(tag.IOINaturalFlag) } // HasURLLink returns true if URLLink is present, Tag 149. func (m IndicationofInterest) HasURLLink() bool { return m.Has(tag.URLLink) } // HasSecurityType returns true if SecurityType is present, Tag 167. func (m IndicationofInterest) HasSecurityType() bool { return m.Has(tag.SecurityType) } // HasNoIOIQualifiers returns true if NoIOIQualifiers is present, Tag 199. func (m IndicationofInterest) HasNoIOIQualifiers() bool { return m.Has(tag.NoIOIQualifiers) } // HasMaturityMonthYear returns true if MaturityMonthYear is present, Tag 200. func (m IndicationofInterest) HasMaturityMonthYear() bool { return m.Has(tag.MaturityMonthYear) } // HasPutOrCall returns true if PutOrCall is present, Tag 201. func (m IndicationofInterest) HasPutOrCall() bool { return m.Has(tag.PutOrCall) } // HasStrikePrice returns true if StrikePrice is present, Tag 202. func (m IndicationofInterest) HasStrikePrice() bool { return m.Has(tag.StrikePrice) } // HasMaturityDay returns true if MaturityDay is present, Tag 205. func (m IndicationofInterest) HasMaturityDay() bool { return m.Has(tag.MaturityDay) } // HasOptAttribute returns true if OptAttribute is present, Tag 206. func (m IndicationofInterest) HasOptAttribute() bool { return m.Has(tag.OptAttribute) } // HasSecurityExchange returns true if SecurityExchange is present, Tag 207. func (m IndicationofInterest) HasSecurityExchange() bool { return m.Has(tag.SecurityExchange) } // NoIOIQualifiers is a repeating group element, Tag 199. type NoIOIQualifiers struct { *quickfix.Group } // SetIOIQualifier sets IOIQualifier, Tag 104. func (m NoIOIQualifiers) SetIOIQualifier(v enum.IOIQualifier) { m.Set(field.NewIOIQualifier(v)) } // GetIOIQualifier gets IOIQualifier, Tag 104. func (m NoIOIQualifiers) GetIOIQualifier() (v enum.IOIQualifier, err quickfix.MessageRejectError) { var f field.IOIQualifierField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasIOIQualifier returns true if IOIQualifier is present, Tag 104. func (m NoIOIQualifiers) HasIOIQualifier() bool { return m.Has(tag.IOIQualifier) } // NoIOIQualifiersRepeatingGroup is a repeating group, Tag 199. type NoIOIQualifiersRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoIOIQualifiersRepeatingGroup returns an initialized, NoIOIQualifiersRepeatingGroup. func NewNoIOIQualifiersRepeatingGroup() NoIOIQualifiersRepeatingGroup { return NoIOIQualifiersRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoIOIQualifiers, quickfix.GroupTemplate{ quickfix.GroupElement(tag.IOIQualifier), }, ), } } // Add create and append a new NoIOIQualifiers to this group. func (m NoIOIQualifiersRepeatingGroup) Add() NoIOIQualifiers { g := m.RepeatingGroup.Add() return NoIOIQualifiers{g} } // Get returns the ith NoIOIQualifiers in the NoIOIQualifiersRepeatinGroup. func (m NoIOIQualifiersRepeatingGroup) Get(i int) NoIOIQualifiers { return NoIOIQualifiers{m.RepeatingGroup.Get(i)} }