Documentation
¶
Overview ¶
Package news msg type = B.
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
- type LinesOfText
- type Message
- func (m Message) Marshal() quickfix.Message
- func (m *Message) SetEncodedHeadline(v string)
- func (m *Message) SetEncodedHeadlineLen(v int)
- func (m *Message) SetHeadline(v string)
- func (m *Message) SetLinesOfText(v []LinesOfText)
- func (m *Message) SetNoRelatedSym(v []NoRelatedSym)
- func (m *Message) SetNoRoutingIDs(v []NoRoutingIDs)
- func (m *Message) SetOrigTime(v time.Time)
- func (m *Message) SetRawData(v string)
- func (m *Message) SetRawDataLength(v int)
- func (m *Message) SetURLLink(v string)
- func (m *Message) SetUrgency(v string)
- type NoRelatedSym
- type NoRoutingIDs
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type LinesOfText ¶
type LinesOfText struct {
//Text is a required field for LinesOfText.
Text string `fix:"58"`
//EncodedTextLen is a non-required field for LinesOfText.
EncodedTextLen *int `fix:"354"`
//EncodedText is a non-required field for LinesOfText.
EncodedText *string `fix:"355"`
}
LinesOfText is a repeating group in News
func NewLinesOfText ¶
func NewLinesOfText(text string) *LinesOfText
NewLinesOfText returns an initialized LinesOfText instance
func (*LinesOfText) SetEncodedText ¶
func (m *LinesOfText) SetEncodedText(v string)
func (*LinesOfText) SetEncodedTextLen ¶
func (m *LinesOfText) SetEncodedTextLen(v int)
func (*LinesOfText) SetText ¶
func (m *LinesOfText) SetText(v string)
type Message ¶
type Message struct {
FIXMsgType string `fix:"B"`
fix43.Header
//OrigTime is a non-required field for News.
OrigTime *time.Time `fix:"42"`
//Urgency is a non-required field for News.
Urgency *string `fix:"61"`
//Headline is a required field for News.
Headline string `fix:"148"`
//EncodedHeadlineLen is a non-required field for News.
EncodedHeadlineLen *int `fix:"358"`
//EncodedHeadline is a non-required field for News.
EncodedHeadline *string `fix:"359"`
//NoRoutingIDs is a non-required field for News.
NoRoutingIDs []NoRoutingIDs `fix:"215,omitempty"`
//NoRelatedSym is a non-required field for News.
NoRelatedSym []NoRelatedSym `fix:"146,omitempty"`
//LinesOfText is a required field for News.
LinesOfText []LinesOfText `fix:"33"`
//URLLink is a non-required field for News.
URLLink *string `fix:"149"`
//RawDataLength is a non-required field for News.
RawDataLength *int `fix:"95"`
//RawData is a non-required field for News.
RawData *string `fix:"96"`
fix43.Trailer
}
Message is a News FIX Message
func New ¶
func New(headline string, linesoftext []LinesOfText) *Message
New returns an initialized News instance
func (*Message) SetEncodedHeadline ¶
func (*Message) SetEncodedHeadlineLen ¶
func (*Message) SetHeadline ¶
func (*Message) SetLinesOfText ¶
func (m *Message) SetLinesOfText(v []LinesOfText)
func (*Message) SetNoRelatedSym ¶
func (m *Message) SetNoRelatedSym(v []NoRelatedSym)
func (*Message) SetNoRoutingIDs ¶
func (m *Message) SetNoRoutingIDs(v []NoRoutingIDs)
func (*Message) SetOrigTime ¶
func (*Message) SetRawData ¶
func (*Message) SetRawDataLength ¶
func (*Message) SetURLLink ¶
func (*Message) SetUrgency ¶
type NoRelatedSym ¶
type NoRelatedSym struct {
//Instrument is a non-required component for NoRelatedSym.
Instrument *instrument.Instrument
}
NoRelatedSym is a repeating group in News
func NewNoRelatedSym ¶
func NewNoRelatedSym() *NoRelatedSym
NewNoRelatedSym returns an initialized NoRelatedSym instance
func (*NoRelatedSym) SetInstrument ¶
func (m *NoRelatedSym) SetInstrument(v instrument.Instrument)
type NoRoutingIDs ¶
type NoRoutingIDs struct {
//RoutingType is a non-required field for NoRoutingIDs.
RoutingType *int `fix:"216"`
//RoutingID is a non-required field for NoRoutingIDs.
RoutingID *string `fix:"217"`
}
NoRoutingIDs is a repeating group in News
func NewNoRoutingIDs ¶
func NewNoRoutingIDs() *NoRoutingIDs
NewNoRoutingIDs returns an initialized NoRoutingIDs instance
func (*NoRoutingIDs) SetRoutingID ¶
func (m *NoRoutingIDs) SetRoutingID(v string)
func (*NoRoutingIDs) SetRoutingType ¶
func (m *NoRoutingIDs) SetRoutingType(v int)
Click to show internal directories.
Click to hide internal directories.