Documentation ¶
Overview ¶
Package collateralinquiryack msg type = BG.
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) SetClOrdID(v string)
- func (m *Message) SetClearingBusinessDate(v string)
- func (m *Message) SetCollInquiryID(v string)
- func (m *Message) SetCollInquiryResult(v int)
- func (m *Message) SetCollInquiryStatus(v int)
- func (m *Message) SetCurrency(v string)
- func (m *Message) SetEncodedText(v string)
- func (m *Message) SetEncodedTextLen(v int)
- func (m *Message) SetFinancingDetails(v financingdetails.FinancingDetails)
- func (m *Message) SetInstrument(v instrument.Instrument)
- func (m *Message) SetNoCollInquiryQualifier(v []NoCollInquiryQualifier)
- func (m *Message) SetNoExecs(v []NoExecs)
- func (m *Message) SetNoLegs(v []NoLegs)
- func (m *Message) SetNoTrades(v []NoTrades)
- func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
- func (m *Message) SetOrderID(v string)
- func (m *Message) SetParties(v parties.Parties)
- func (m *Message) SetQtyType(v int)
- func (m *Message) SetQuantity(v float64)
- func (m *Message) SetResponseDestination(v string)
- func (m *Message) SetResponseTransportType(v int)
- func (m *Message) SetSecondaryClOrdID(v string)
- func (m *Message) SetSecondaryOrderID(v string)
- func (m *Message) SetSettlDate(v string)
- func (m *Message) SetSettlSessID(v string)
- func (m *Message) SetSettlSessSubID(v string)
- func (m *Message) SetText(v string)
- func (m *Message) SetTotNumReports(v int)
- func (m *Message) SetTradingSessionID(v string)
- func (m *Message) SetTradingSessionSubID(v string)
- type NoCollInquiryQualifier
- type NoExecs
- type NoLegs
- type NoTrades
- type NoUnderlyings
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct { FIXMsgType string `fix:"BG"` fix44.Header //CollInquiryID is a required field for CollateralInquiryAck. CollInquiryID string `fix:"909"` //CollInquiryStatus is a required field for CollateralInquiryAck. CollInquiryStatus int `fix:"945"` //CollInquiryResult is a non-required field for CollateralInquiryAck. CollInquiryResult *int `fix:"946"` //NoCollInquiryQualifier is a non-required field for CollateralInquiryAck. NoCollInquiryQualifier []NoCollInquiryQualifier `fix:"938,omitempty"` //TotNumReports is a non-required field for CollateralInquiryAck. TotNumReports *int `fix:"911"` //Parties is a non-required component for CollateralInquiryAck. Parties *parties.Parties //Account is a non-required field for CollateralInquiryAck. Account *string `fix:"1"` //AccountType is a non-required field for CollateralInquiryAck. AccountType *int `fix:"581"` //ClOrdID is a non-required field for CollateralInquiryAck. ClOrdID *string `fix:"11"` //OrderID is a non-required field for CollateralInquiryAck. OrderID *string `fix:"37"` //SecondaryOrderID is a non-required field for CollateralInquiryAck. SecondaryOrderID *string `fix:"198"` //SecondaryClOrdID is a non-required field for CollateralInquiryAck. SecondaryClOrdID *string `fix:"526"` //NoExecs is a non-required field for CollateralInquiryAck. NoExecs []NoExecs `fix:"124,omitempty"` //NoTrades is a non-required field for CollateralInquiryAck. NoTrades []NoTrades `fix:"897,omitempty"` //Instrument is a non-required component for CollateralInquiryAck. Instrument *instrument.Instrument //FinancingDetails is a non-required component for CollateralInquiryAck. FinancingDetails *financingdetails.FinancingDetails //SettlDate is a non-required field for CollateralInquiryAck. SettlDate *string `fix:"64"` //Quantity is a non-required field for CollateralInquiryAck. Quantity *float64 `fix:"53"` //QtyType is a non-required field for CollateralInquiryAck. QtyType *int `fix:"854"` //Currency is a non-required field for CollateralInquiryAck. Currency *string `fix:"15"` //NoLegs is a non-required field for CollateralInquiryAck. NoLegs []NoLegs `fix:"555,omitempty"` //NoUnderlyings is a non-required field for CollateralInquiryAck. NoUnderlyings []NoUnderlyings `fix:"711,omitempty"` //TradingSessionID is a non-required field for CollateralInquiryAck. TradingSessionID *string `fix:"336"` //TradingSessionSubID is a non-required field for CollateralInquiryAck. TradingSessionSubID *string `fix:"625"` //SettlSessID is a non-required field for CollateralInquiryAck. SettlSessID *string `fix:"716"` //SettlSessSubID is a non-required field for CollateralInquiryAck. SettlSessSubID *string `fix:"717"` //ClearingBusinessDate is a non-required field for CollateralInquiryAck. ClearingBusinessDate *string `fix:"715"` //ResponseTransportType is a non-required field for CollateralInquiryAck. ResponseTransportType *int `fix:"725"` //ResponseDestination is a non-required field for CollateralInquiryAck. ResponseDestination *string `fix:"726"` //Text is a non-required field for CollateralInquiryAck. Text *string `fix:"58"` //EncodedTextLen is a non-required field for CollateralInquiryAck. EncodedTextLen *int `fix:"354"` //EncodedText is a non-required field for CollateralInquiryAck. EncodedText *string `fix:"355"` fix44.Trailer }
Message is a CollateralInquiryAck FIX Message
func (*Message) SetAccount ¶ added in v0.2.0
func (*Message) SetAccountType ¶ added in v0.2.0
func (*Message) SetClOrdID ¶ added in v0.2.0
func (*Message) SetClearingBusinessDate ¶ added in v0.2.0
func (*Message) SetCollInquiryID ¶ added in v0.2.0
func (*Message) SetCollInquiryResult ¶ added in v0.2.0
func (*Message) SetCollInquiryStatus ¶ 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) SetFinancingDetails ¶ added in v0.2.0
func (m *Message) SetFinancingDetails(v financingdetails.FinancingDetails)
func (*Message) SetInstrument ¶ added in v0.2.0
func (m *Message) SetInstrument(v instrument.Instrument)
func (*Message) SetNoCollInquiryQualifier ¶ added in v0.2.0
func (m *Message) SetNoCollInquiryQualifier(v []NoCollInquiryQualifier)
func (*Message) SetNoExecs ¶ added in v0.2.0
func (*Message) SetNoTrades ¶ added in v0.2.0
func (*Message) SetNoUnderlyings ¶ added in v0.2.0
func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
func (*Message) SetOrderID ¶ added in v0.2.0
func (*Message) SetParties ¶ added in v0.2.0
func (*Message) SetQtyType ¶ added in v0.2.0
func (*Message) SetQuantity ¶ added in v0.2.0
func (*Message) SetResponseDestination ¶ added in v0.2.0
func (*Message) SetResponseTransportType ¶ added in v0.2.0
func (*Message) SetSecondaryClOrdID ¶ added in v0.2.0
func (*Message) SetSecondaryOrderID ¶ added in v0.2.0
func (*Message) SetSettlDate ¶ added in v0.2.0
func (*Message) SetSettlSessID ¶ added in v0.2.0
func (*Message) SetSettlSessSubID ¶ added in v0.2.0
func (*Message) SetTotNumReports ¶ added in v0.2.0
func (*Message) SetTradingSessionID ¶ added in v0.2.0
func (*Message) SetTradingSessionSubID ¶ added in v0.2.0
type NoCollInquiryQualifier ¶
type NoCollInquiryQualifier struct { //CollInquiryQualifier is a non-required field for NoCollInquiryQualifier. CollInquiryQualifier *int `fix:"896"` }
NoCollInquiryQualifier is a repeating group in CollateralInquiryAck
func NewNoCollInquiryQualifier ¶ added in v0.2.0
func NewNoCollInquiryQualifier() *NoCollInquiryQualifier
NewNoCollInquiryQualifier returns an initialized NoCollInquiryQualifier instance
func (*NoCollInquiryQualifier) SetCollInquiryQualifier ¶ added in v0.2.0
func (m *NoCollInquiryQualifier) SetCollInquiryQualifier(v int)
type NoExecs ¶
type NoExecs struct { //ExecID is a non-required field for NoExecs. ExecID *string `fix:"17"` }
NoExecs is a repeating group in CollateralInquiryAck
func NewNoExecs ¶ added in v0.2.0
func NewNoExecs() *NoExecs
NewNoExecs returns an initialized NoExecs instance
type NoLegs ¶
type NoLegs struct { //InstrumentLeg is a non-required component for NoLegs. InstrumentLeg *instrumentleg.InstrumentLeg }
NoLegs is a repeating group in CollateralInquiryAck
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 NoTrades ¶
type NoTrades struct { //TradeReportID is a non-required field for NoTrades. TradeReportID *string `fix:"571"` //SecondaryTradeReportID is a non-required field for NoTrades. SecondaryTradeReportID *string `fix:"818"` }
NoTrades is a repeating group in CollateralInquiryAck
func NewNoTrades ¶ added in v0.2.0
func NewNoTrades() *NoTrades
NewNoTrades returns an initialized NoTrades instance
func (*NoTrades) SetSecondaryTradeReportID ¶ added in v0.2.0
func (*NoTrades) SetTradeReportID ¶ added in v0.2.0
type NoUnderlyings ¶
type NoUnderlyings struct { //UnderlyingInstrument is a non-required component for NoUnderlyings. UnderlyingInstrument *underlyinginstrument.UnderlyingInstrument }
NoUnderlyings is a repeating group in CollateralInquiryAck
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)