Documentation
      ¶
    
    
  
    
  
    Overview ¶
Package advertisement msg type = 7.
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
 - type Message
 - func (m Message) Marshal() quickfix.Message
 - func (m *Message) SetAdvId(v int)
 - func (m *Message) SetAdvRefID(v int)
 - func (m *Message) SetAdvSide(v string)
 - func (m *Message) SetAdvTransType(v string)
 - func (m *Message) SetCurrency(v string)
 - func (m *Message) SetIDSource(v string)
 - func (m *Message) SetIssuer(v string)
 - func (m *Message) SetPrice(v float64)
 - func (m *Message) SetSecurityDesc(v string)
 - func (m *Message) SetSecurityID(v string)
 - func (m *Message) SetShares(v int)
 - func (m *Message) SetSymbol(v string)
 - func (m *Message) SetSymbolSfx(v string)
 - func (m *Message) SetText(v string)
 - func (m *Message) SetTransactTime(v time.Time)
 
- type RouteOut
 
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct {
	FIXMsgType string `fix:"7"`
	fix40.Header
	//AdvId is a required field for Advertisement.
	AdvId int `fix:"2"`
	//AdvTransType is a required field for Advertisement.
	AdvTransType string `fix:"5"`
	//AdvRefID is a non-required field for Advertisement.
	AdvRefID *int `fix:"3"`
	//Symbol is a required field for Advertisement.
	Symbol string `fix:"55"`
	//SymbolSfx is a non-required field for Advertisement.
	SymbolSfx *string `fix:"65"`
	//SecurityID is a non-required field for Advertisement.
	SecurityID *string `fix:"48"`
	//IDSource is a non-required field for Advertisement.
	IDSource *string `fix:"22"`
	//Issuer is a non-required field for Advertisement.
	Issuer *string `fix:"106"`
	//SecurityDesc is a non-required field for Advertisement.
	SecurityDesc *string `fix:"107"`
	//AdvSide is a required field for Advertisement.
	AdvSide string `fix:"4"`
	Shares int `fix:"53"`
	//Price is a non-required field for Advertisement.
	Price *float64 `fix:"44"`
	//Currency is a non-required field for Advertisement.
	Currency *string `fix:"15"`
	//TransactTime is a non-required field for Advertisement.
	TransactTime *time.Time `fix:"60"`
	//Text is a non-required field for Advertisement.
	Text *string `fix:"58"`
	fix40.Trailer
}
    Message is a Advertisement FIX Message
func (*Message) SetAdvRefID ¶ added in v0.2.0
func (*Message) SetAdvSide ¶ added in v0.2.0
func (*Message) SetAdvTransType ¶ added in v0.2.0
func (*Message) SetCurrency ¶ added in v0.2.0
func (*Message) SetIDSource ¶ added in v0.2.0
func (*Message) SetSecurityDesc ¶ added in v0.2.0
func (*Message) SetSecurityID ¶ added in v0.2.0
func (*Message) SetSymbolSfx ¶ added in v0.2.0
func (*Message) SetTransactTime ¶ added in v0.2.0
 Click to show internal directories. 
   Click to hide internal directories.