Documentation
¶
Overview ¶
Package quotestatusrequest msg type = a.
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
- type Message
- func (m Message) Marshal() quickfix.Message
- func (m *Message) SetAccount(v string)
- func (m *Message) SetAccountType(v int)
- func (m *Message) SetAcctIDSource(v int)
- func (m *Message) SetFinancingDetails(v financingdetails.FinancingDetails)
- func (m *Message) SetInstrument(v instrument.Instrument)
- func (m *Message) SetNoLegs(v []NoLegs)
- func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
- func (m *Message) SetParties(v parties.Parties)
- func (m *Message) SetQuoteID(v string)
- func (m *Message) SetQuoteStatusReqID(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:"a"`
fix44.Header
//QuoteStatusReqID is a non-required field for QuoteStatusRequest.
QuoteStatusReqID *string `fix:"649"`
//QuoteID is a non-required field for QuoteStatusRequest.
QuoteID *string `fix:"117"`
//Instrument is a required component for QuoteStatusRequest.
instrument.Instrument
//FinancingDetails is a non-required component for QuoteStatusRequest.
FinancingDetails *financingdetails.FinancingDetails
//NoUnderlyings is a non-required field for QuoteStatusRequest.
NoUnderlyings []NoUnderlyings `fix:"711,omitempty"`
//NoLegs is a non-required field for QuoteStatusRequest.
NoLegs []NoLegs `fix:"555,omitempty"`
//Parties is a non-required component for QuoteStatusRequest.
Parties *parties.Parties
//Account is a non-required field for QuoteStatusRequest.
Account *string `fix:"1"`
//AcctIDSource is a non-required field for QuoteStatusRequest.
AcctIDSource *int `fix:"660"`
//AccountType is a non-required field for QuoteStatusRequest.
AccountType *int `fix:"581"`
//TradingSessionID is a non-required field for QuoteStatusRequest.
TradingSessionID *string `fix:"336"`
//TradingSessionSubID is a non-required field for QuoteStatusRequest.
TradingSessionSubID *string `fix:"625"`
//SubscriptionRequestType is a non-required field for QuoteStatusRequest.
SubscriptionRequestType *string `fix:"263"`
fix44.Trailer
}
Message is a QuoteStatusRequest FIX Message
func New ¶ added in v0.2.0
func New(instrument instrument.Instrument) *Message
New returns an initialized QuoteStatusRequest instance
func (*Message) SetAccount ¶ added in v0.2.0
func (*Message) SetAccountType ¶ added in v0.2.0
func (*Message) SetAcctIDSource ¶ added in v0.2.0
func (*Message) SetFinancingDetails ¶ added in v0.2.0
func (m *Message) SetFinancingDetails(v financingdetails.FinancingDetails)
func (*Message) SetInstrument ¶ added in v0.2.0
func (m *Message) SetInstrument(v instrument.Instrument)
func (*Message) SetNoUnderlyings ¶ added in v0.2.0
func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
func (*Message) SetParties ¶ added in v0.2.0
func (*Message) SetQuoteID ¶ added in v0.2.0
func (*Message) SetQuoteStatusReqID ¶ 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 QuoteStatusRequest
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 QuoteStatusRequest
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.