174 lines
4.8 KiB
Go
174 lines
4.8 KiB
Go
// Code generated by quickfix. DO NOT EDIT.
|
|
package listcancelrequest
|
|
|
|
import (
|
|
"time"
|
|
|
|
"quantex.com/qfixpt/quickfix"
|
|
"quantex.com/qfixpt/quickfix/gen/field"
|
|
"quantex.com/qfixpt/quickfix/gen/fix43"
|
|
"quantex.com/qfixpt/quickfix/gen/tag"
|
|
)
|
|
|
|
// ListCancelRequest is the fix43 ListCancelRequest type, MsgType = K.
|
|
type ListCancelRequest struct {
|
|
fix43.Header
|
|
*quickfix.Body
|
|
fix43.Trailer
|
|
Message *quickfix.Message
|
|
}
|
|
|
|
// FromMessage creates a ListCancelRequest from a quickfix.Message instance.
|
|
func FromMessage(m *quickfix.Message) ListCancelRequest {
|
|
return ListCancelRequest{
|
|
Header: fix43.Header{Header: &m.Header},
|
|
Body: &m.Body,
|
|
Trailer: fix43.Trailer{Trailer: &m.Trailer},
|
|
Message: m,
|
|
}
|
|
}
|
|
|
|
// ToMessage returns a quickfix.Message instance.
|
|
func (m ListCancelRequest) ToMessage() *quickfix.Message {
|
|
return m.Message
|
|
}
|
|
|
|
// New returns a ListCancelRequest initialized with the required fields for ListCancelRequest.
|
|
func New(listid field.ListIDField, transacttime field.TransactTimeField) (m ListCancelRequest) {
|
|
m.Message = quickfix.NewMessage()
|
|
m.Header = fix43.NewHeader(&m.Message.Header)
|
|
m.Body = &m.Message.Body
|
|
m.Trailer.Trailer = &m.Message.Trailer
|
|
|
|
m.Header.Set(field.NewMsgType("K"))
|
|
m.Set(listid)
|
|
m.Set(transacttime)
|
|
|
|
return
|
|
}
|
|
|
|
// A RouteOut is the callback type that should be implemented for routing Message.
|
|
type RouteOut func(msg ListCancelRequest, sessionID quickfix.SessionID) quickfix.MessageRejectError
|
|
|
|
// Route returns the beginstring, message type, and MessageRoute for this Message type.
|
|
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
|
|
r := func(msg *quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
|
|
return router(FromMessage(msg), sessionID)
|
|
}
|
|
return "FIX.4.3", "K", r
|
|
}
|
|
|
|
// SetText sets Text, Tag 58.
|
|
func (m ListCancelRequest) SetText(v string) {
|
|
m.Set(field.NewText(v))
|
|
}
|
|
|
|
// SetTransactTime sets TransactTime, Tag 60.
|
|
func (m ListCancelRequest) SetTransactTime(v time.Time) {
|
|
m.Set(field.NewTransactTime(v))
|
|
}
|
|
|
|
// SetListID sets ListID, Tag 66.
|
|
func (m ListCancelRequest) SetListID(v string) {
|
|
m.Set(field.NewListID(v))
|
|
}
|
|
|
|
// SetTradeOriginationDate sets TradeOriginationDate, Tag 229.
|
|
func (m ListCancelRequest) SetTradeOriginationDate(v string) {
|
|
m.Set(field.NewTradeOriginationDate(v))
|
|
}
|
|
|
|
// SetEncodedTextLen sets EncodedTextLen, Tag 354.
|
|
func (m ListCancelRequest) SetEncodedTextLen(v int) {
|
|
m.Set(field.NewEncodedTextLen(v))
|
|
}
|
|
|
|
// SetEncodedText sets EncodedText, Tag 355.
|
|
func (m ListCancelRequest) SetEncodedText(v string) {
|
|
m.Set(field.NewEncodedText(v))
|
|
}
|
|
|
|
// GetText gets Text, Tag 58.
|
|
func (m ListCancelRequest) GetText() (v string, err quickfix.MessageRejectError) {
|
|
var f field.TextField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTransactTime gets TransactTime, Tag 60.
|
|
func (m ListCancelRequest) GetTransactTime() (v time.Time, err quickfix.MessageRejectError) {
|
|
var f field.TransactTimeField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetListID gets ListID, Tag 66.
|
|
func (m ListCancelRequest) GetListID() (v string, err quickfix.MessageRejectError) {
|
|
var f field.ListIDField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetTradeOriginationDate gets TradeOriginationDate, Tag 229.
|
|
func (m ListCancelRequest) GetTradeOriginationDate() (v string, err quickfix.MessageRejectError) {
|
|
var f field.TradeOriginationDateField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEncodedTextLen gets EncodedTextLen, Tag 354.
|
|
func (m ListCancelRequest) GetEncodedTextLen() (v int, err quickfix.MessageRejectError) {
|
|
var f field.EncodedTextLenField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetEncodedText gets EncodedText, Tag 355.
|
|
func (m ListCancelRequest) GetEncodedText() (v string, err quickfix.MessageRejectError) {
|
|
var f field.EncodedTextField
|
|
if err = m.Get(&f); err == nil {
|
|
v = f.Value()
|
|
}
|
|
return
|
|
}
|
|
|
|
// HasText returns true if Text is present, Tag 58.
|
|
func (m ListCancelRequest) HasText() bool {
|
|
return m.Has(tag.Text)
|
|
}
|
|
|
|
// HasTransactTime returns true if TransactTime is present, Tag 60.
|
|
func (m ListCancelRequest) HasTransactTime() bool {
|
|
return m.Has(tag.TransactTime)
|
|
}
|
|
|
|
// HasListID returns true if ListID is present, Tag 66.
|
|
func (m ListCancelRequest) HasListID() bool {
|
|
return m.Has(tag.ListID)
|
|
}
|
|
|
|
// HasTradeOriginationDate returns true if TradeOriginationDate is present, Tag 229.
|
|
func (m ListCancelRequest) HasTradeOriginationDate() bool {
|
|
return m.Has(tag.TradeOriginationDate)
|
|
}
|
|
|
|
// HasEncodedTextLen returns true if EncodedTextLen is present, Tag 354.
|
|
func (m ListCancelRequest) HasEncodedTextLen() bool {
|
|
return m.Has(tag.EncodedTextLen)
|
|
}
|
|
|
|
// HasEncodedText returns true if EncodedText is present, Tag 355.
|
|
func (m ListCancelRequest) HasEncodedText() bool {
|
|
return m.Has(tag.EncodedText)
|
|
}
|