Documentation
¶
Overview ¶
Package requestforpositionsack msg type = AO.
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) SetCurrency(v string)
- func (m *Message) SetEncodedText(v string)
- func (m *Message) SetEncodedTextLen(v int)
- 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) SetPosMaintRptID(v string)
- func (m *Message) SetPosReqID(v string)
- func (m *Message) SetPosReqResult(v int)
- func (m *Message) SetPosReqStatus(v int)
- func (m *Message) SetResponseDestination(v string)
- func (m *Message) SetResponseTransportType(v int)
- func (m *Message) SetText(v string)
- func (m *Message) SetTotalNumPosReports(v int)
- func (m *Message) SetUnsolicitedIndicator(v bool)
- 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:"AO"`
fix44.Header
//PosMaintRptID is a required field for RequestForPositionsAck.
PosMaintRptID string `fix:"721"`
//PosReqID is a non-required field for RequestForPositionsAck.
PosReqID *string `fix:"710"`
//TotalNumPosReports is a non-required field for RequestForPositionsAck.
TotalNumPosReports *int `fix:"727"`
//UnsolicitedIndicator is a non-required field for RequestForPositionsAck.
UnsolicitedIndicator *bool `fix:"325"`
//PosReqResult is a required field for RequestForPositionsAck.
PosReqResult int `fix:"728"`
//PosReqStatus is a required field for RequestForPositionsAck.
PosReqStatus int `fix:"729"`
//Parties is a required component for RequestForPositionsAck.
parties.Parties
//Account is a required field for RequestForPositionsAck.
Account string `fix:"1"`
//AcctIDSource is a non-required field for RequestForPositionsAck.
AcctIDSource *int `fix:"660"`
//AccountType is a required field for RequestForPositionsAck.
AccountType int `fix:"581"`
//Instrument is a non-required component for RequestForPositionsAck.
Instrument *instrument.Instrument
//Currency is a non-required field for RequestForPositionsAck.
Currency *string `fix:"15"`
//NoLegs is a non-required field for RequestForPositionsAck.
NoLegs []NoLegs `fix:"555,omitempty"`
//NoUnderlyings is a non-required field for RequestForPositionsAck.
NoUnderlyings []NoUnderlyings `fix:"711,omitempty"`
//ResponseTransportType is a non-required field for RequestForPositionsAck.
ResponseTransportType *int `fix:"725"`
//ResponseDestination is a non-required field for RequestForPositionsAck.
ResponseDestination *string `fix:"726"`
//Text is a non-required field for RequestForPositionsAck.
Text *string `fix:"58"`
//EncodedTextLen is a non-required field for RequestForPositionsAck.
EncodedTextLen *int `fix:"354"`
//EncodedText is a non-required field for RequestForPositionsAck.
EncodedText *string `fix:"355"`
fix44.Trailer
}
Message is a RequestForPositionsAck FIX Message
func New ¶ added in v0.2.0
func New(posmaintrptid string, posreqresult int, posreqstatus int, parties parties.Parties, account string, accounttype int) *Message
New returns an initialized RequestForPositionsAck 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) SetCurrency ¶ added in v0.2.0
func (*Message) SetEncodedText ¶ added in v0.2.0
func (*Message) SetEncodedTextLen ¶ added in v0.2.0
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) SetPosMaintRptID ¶ added in v0.2.0
func (*Message) SetPosReqID ¶ added in v0.2.0
func (*Message) SetPosReqResult ¶ added in v0.2.0
func (*Message) SetPosReqStatus ¶ added in v0.2.0
func (*Message) SetResponseDestination ¶ added in v0.2.0
func (*Message) SetResponseTransportType ¶ added in v0.2.0
func (*Message) SetTotalNumPosReports ¶ added in v0.2.0
func (*Message) SetUnsolicitedIndicator ¶ 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 RequestForPositionsAck
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 RequestForPositionsAck
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.