Documentation
      ¶
    
    
  
    
  
    Overview ¶
Package allocationreportack msg type = AT.
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
 - type Message
 - func (m Message) Marshal() quickfix.Message
 - func (m *Message) SetAllocID(v string)
 - func (m *Message) SetAllocIntermedReqType(v int)
 - func (m *Message) SetAllocRejCode(v int)
 - func (m *Message) SetAllocReportID(v string)
 - func (m *Message) SetAllocReportType(v int)
 - func (m *Message) SetAllocStatus(v int)
 - func (m *Message) SetEncodedText(v string)
 - func (m *Message) SetEncodedTextLen(v int)
 - func (m *Message) SetMatchStatus(v string)
 - func (m *Message) SetNoAllocs(v []NoAllocs)
 - func (m *Message) SetParties(v parties.Parties)
 - func (m *Message) SetProduct(v int)
 - func (m *Message) SetSecondaryAllocID(v string)
 - func (m *Message) SetSecurityType(v string)
 - func (m *Message) SetText(v string)
 - func (m *Message) SetTradeDate(v string)
 - func (m *Message) SetTransactTime(v time.Time)
 
- type NoAllocs
 - func (m *NoAllocs) SetAllocAccount(v string)
 - func (m *NoAllocs) SetAllocAcctIDSource(v int)
 - func (m *NoAllocs) SetAllocPrice(v float64)
 - func (m *NoAllocs) SetAllocText(v string)
 - func (m *NoAllocs) SetEncodedAllocText(v string)
 - func (m *NoAllocs) SetEncodedAllocTextLen(v int)
 - func (m *NoAllocs) SetIndividualAllocID(v string)
 - func (m *NoAllocs) SetIndividualAllocRejCode(v int)
 
- type RouteOut
 
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct {
	FIXMsgType string `fix:"AT"`
	fix44.Header
	//AllocReportID is a required field for AllocationReportAck.
	AllocReportID string `fix:"755"`
	//AllocID is a required field for AllocationReportAck.
	AllocID string `fix:"70"`
	//Parties is a non-required component for AllocationReportAck.
	Parties *parties.Parties
	//SecondaryAllocID is a non-required field for AllocationReportAck.
	SecondaryAllocID *string `fix:"793"`
	//TradeDate is a non-required field for AllocationReportAck.
	TradeDate *string `fix:"75"`
	//TransactTime is a required field for AllocationReportAck.
	TransactTime time.Time `fix:"60"`
	//AllocStatus is a required field for AllocationReportAck.
	AllocStatus int `fix:"87"`
	//AllocRejCode is a non-required field for AllocationReportAck.
	AllocRejCode *int `fix:"88"`
	//AllocReportType is a non-required field for AllocationReportAck.
	AllocReportType *int `fix:"794"`
	//AllocIntermedReqType is a non-required field for AllocationReportAck.
	AllocIntermedReqType *int `fix:"808"`
	//MatchStatus is a non-required field for AllocationReportAck.
	MatchStatus *string `fix:"573"`
	//Product is a non-required field for AllocationReportAck.
	Product *int `fix:"460"`
	//SecurityType is a non-required field for AllocationReportAck.
	SecurityType *string `fix:"167"`
	//Text is a non-required field for AllocationReportAck.
	Text *string `fix:"58"`
	//EncodedTextLen is a non-required field for AllocationReportAck.
	EncodedTextLen *int `fix:"354"`
	//EncodedText is a non-required field for AllocationReportAck.
	EncodedText *string `fix:"355"`
	//NoAllocs is a non-required field for AllocationReportAck.
	NoAllocs []NoAllocs `fix:"78,omitempty"`
	fix44.Trailer
}
    Message is a AllocationReportAck FIX Message
func (*Message) SetAllocID ¶ added in v0.2.0
func (*Message) SetAllocIntermedReqType ¶ added in v0.2.0
func (*Message) SetAllocRejCode ¶ added in v0.2.0
func (*Message) SetAllocReportID ¶ added in v0.2.0
func (*Message) SetAllocReportType ¶ added in v0.2.0
func (*Message) SetAllocStatus ¶ added in v0.2.0
func (*Message) SetEncodedText ¶ added in v0.2.0
func (*Message) SetEncodedTextLen ¶ added in v0.2.0
func (*Message) SetMatchStatus ¶ added in v0.2.0
func (*Message) SetNoAllocs ¶ added in v0.2.0
func (*Message) SetParties ¶ added in v0.2.0
func (*Message) SetProduct ¶ added in v0.2.0
func (*Message) SetSecondaryAllocID ¶ added in v0.2.0
func (*Message) SetSecurityType ¶ added in v0.2.0
func (*Message) SetTradeDate ¶ added in v0.2.0
func (*Message) SetTransactTime ¶ added in v0.2.0
type NoAllocs ¶
type NoAllocs struct {
	//AllocAccount is a non-required field for NoAllocs.
	AllocAccount *string `fix:"79"`
	//AllocAcctIDSource is a non-required field for NoAllocs.
	AllocAcctIDSource *int `fix:"661"`
	//AllocPrice is a non-required field for NoAllocs.
	AllocPrice *float64 `fix:"366"`
	//IndividualAllocID is a non-required field for NoAllocs.
	IndividualAllocID *string `fix:"467"`
	//IndividualAllocRejCode is a non-required field for NoAllocs.
	IndividualAllocRejCode *int `fix:"776"`
	//AllocText is a non-required field for NoAllocs.
	AllocText *string `fix:"161"`
	//EncodedAllocTextLen is a non-required field for NoAllocs.
	EncodedAllocTextLen *int `fix:"360"`
	//EncodedAllocText is a non-required field for NoAllocs.
	EncodedAllocText *string `fix:"361"`
}
    NoAllocs is a repeating group in AllocationReportAck
func NewNoAllocs ¶ added in v0.2.0
func NewNoAllocs() *NoAllocs
NewNoAllocs returns an initialized NoAllocs instance
func (*NoAllocs) SetAllocAccount ¶ added in v0.2.0
func (*NoAllocs) SetAllocAcctIDSource ¶ added in v0.2.0
func (*NoAllocs) SetAllocPrice ¶ added in v0.2.0
func (*NoAllocs) SetAllocText ¶ added in v0.2.0
func (*NoAllocs) SetEncodedAllocText ¶ added in v0.2.0
func (*NoAllocs) SetEncodedAllocTextLen ¶ added in v0.2.0
func (*NoAllocs) SetIndividualAllocID ¶ added in v0.2.0
func (*NoAllocs) SetIndividualAllocRejCode ¶ added in v0.2.0
 Click to show internal directories. 
   Click to hide internal directories.