Documentation ¶
Overview ¶
Package securitystatusrequest msg type = e.
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
- type Message
- func (m Message) Marshal() quickfix.Message
- func (m *Message) SetCurrency(v string)
- func (m *Message) SetInstrument(v instrument.Instrument)
- func (m *Message) SetInstrumentExtension(v instrumentextension.InstrumentExtension)
- func (m *Message) SetNoLegs(v []NoLegs)
- func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
- func (m *Message) SetSecurityStatusReqID(v string)
- func (m *Message) SetSubscriptionRequestType(v string)
- func (m *Message) SetTradingSessionID(v string)
- func (m *Message) SetTradingSessionSubID(v string)
- type NoLegs
- type NoUnderlyings
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct { FIXMsgType string `fix:"e"` fix44.Header //SecurityStatusReqID is a required field for SecurityStatusRequest. SecurityStatusReqID string `fix:"324"` //Instrument is a required component for SecurityStatusRequest. instrument.Instrument //InstrumentExtension is a non-required component for SecurityStatusRequest. InstrumentExtension *instrumentextension.InstrumentExtension //NoUnderlyings is a non-required field for SecurityStatusRequest. NoUnderlyings []NoUnderlyings `fix:"711,omitempty"` //NoLegs is a non-required field for SecurityStatusRequest. NoLegs []NoLegs `fix:"555,omitempty"` //Currency is a non-required field for SecurityStatusRequest. Currency *string `fix:"15"` //SubscriptionRequestType is a required field for SecurityStatusRequest. SubscriptionRequestType string `fix:"263"` //TradingSessionID is a non-required field for SecurityStatusRequest. TradingSessionID *string `fix:"336"` //TradingSessionSubID is a non-required field for SecurityStatusRequest. TradingSessionSubID *string `fix:"625"` fix44.Trailer }
Message is a SecurityStatusRequest FIX Message
func New ¶ added in v0.2.0
func New(securitystatusreqid string, instrument instrument.Instrument, subscriptionrequesttype string) *Message
New returns an initialized SecurityStatusRequest instance
func (*Message) SetCurrency ¶ added in v0.2.0
func (*Message) SetInstrument ¶ added in v0.2.0
func (m *Message) SetInstrument(v instrument.Instrument)
func (*Message) SetInstrumentExtension ¶ added in v0.2.0
func (m *Message) SetInstrumentExtension(v instrumentextension.InstrumentExtension)
func (*Message) SetNoUnderlyings ¶ added in v0.2.0
func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
func (*Message) SetSecurityStatusReqID ¶ added in v0.2.0
func (*Message) SetSubscriptionRequestType ¶ added in v0.2.0
func (*Message) SetTradingSessionID ¶ added in v0.2.0
func (*Message) SetTradingSessionSubID ¶ added in v0.2.0
type NoLegs ¶
type NoLegs struct { //InstrumentLeg is a non-required component for NoLegs. InstrumentLeg *instrumentleg.InstrumentLeg }
NoLegs is a repeating group in SecurityStatusRequest
func NewNoLegs ¶ added in v0.2.0
func NewNoLegs() *NoLegs
NewNoLegs returns an initialized NoLegs instance
func (*NoLegs) SetInstrumentLeg ¶ added in v0.2.0
func (m *NoLegs) SetInstrumentLeg(v instrumentleg.InstrumentLeg)
type NoUnderlyings ¶
type NoUnderlyings struct { //UnderlyingInstrument is a non-required component for NoUnderlyings. UnderlyingInstrument *underlyinginstrument.UnderlyingInstrument }
NoUnderlyings is a repeating group in SecurityStatusRequest
func NewNoUnderlyings ¶ added in v0.2.0
func NewNoUnderlyings() *NoUnderlyings
NewNoUnderlyings returns an initialized NoUnderlyings instance
func (*NoUnderlyings) SetUnderlyingInstrument ¶ added in v0.2.0
func (m *NoUnderlyings) SetUnderlyingInstrument(v underlyinginstrument.UnderlyingInstrument)
Click to show internal directories.
Click to hide internal directories.