Documentation ¶
Overview ¶
Package orderstatusrequest msg type = H.
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) SetClOrdID(v string)
- func (m *Message) SetClOrdLinkID(v string)
- func (m *Message) SetInstrument(v instrument.Instrument)
- func (m *Message) SetOrderID(v string)
- func (m *Message) SetParties(v parties.Parties)
- func (m *Message) SetSecondaryClOrdID(v string)
- func (m *Message) SetSide(v string)
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct { FIXMsgType string `fix:"H"` fix43.Header //OrderID is a non-required field for OrderStatusRequest. OrderID *string `fix:"37"` //ClOrdID is a required field for OrderStatusRequest. ClOrdID string `fix:"11"` //SecondaryClOrdID is a non-required field for OrderStatusRequest. SecondaryClOrdID *string `fix:"526"` //ClOrdLinkID is a non-required field for OrderStatusRequest. ClOrdLinkID *string `fix:"583"` //Parties is a non-required component for OrderStatusRequest. Parties *parties.Parties //Account is a non-required field for OrderStatusRequest. Account *string `fix:"1"` //Instrument is a required component for OrderStatusRequest. instrument.Instrument //Side is a required field for OrderStatusRequest. Side string `fix:"54"` fix43.Trailer }
Message is a OrderStatusRequest FIX Message
func New ¶ added in v0.2.0
func New(clordid string, instrument instrument.Instrument, side string) *Message
New returns an initialized OrderStatusRequest instance
func (*Message) SetAccount ¶ added in v0.2.0
func (*Message) SetClOrdID ¶ added in v0.2.0
func (*Message) SetClOrdLinkID ¶ added in v0.2.0
func (*Message) SetInstrument ¶ added in v0.2.0
func (m *Message) SetInstrument(v instrument.Instrument)
func (*Message) SetOrderID ¶ added in v0.2.0
func (*Message) SetParties ¶ added in v0.2.0
func (*Message) SetSecondaryClOrdID ¶ added in v0.2.0
Click to show internal directories.
Click to hide internal directories.