adding quickfix
This commit is contained in:
622
quickfix/gen/fix50sp1/liststatus/ListStatus.generated.go
Normal file
622
quickfix/gen/fix50sp1/liststatus/ListStatus.generated.go
Normal file
@ -0,0 +1,622 @@
|
||||
// Code generated by quickfix. DO NOT EDIT.
|
||||
package liststatus
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/shopspring/decimal"
|
||||
|
||||
"quantex.com/qfixdpl/quickfix"
|
||||
"quantex.com/qfixdpl/quickfix/gen/enum"
|
||||
"quantex.com/qfixdpl/quickfix/gen/field"
|
||||
"quantex.com/qfixdpl/quickfix/gen/fixt11"
|
||||
"quantex.com/qfixdpl/quickfix/gen/tag"
|
||||
)
|
||||
|
||||
// ListStatus is the fix50sp1 ListStatus type, MsgType = N.
|
||||
type ListStatus struct {
|
||||
fixt11.Header
|
||||
*quickfix.Body
|
||||
fixt11.Trailer
|
||||
Message *quickfix.Message
|
||||
}
|
||||
|
||||
// FromMessage creates a ListStatus from a quickfix.Message instance.
|
||||
func FromMessage(m *quickfix.Message) ListStatus {
|
||||
return ListStatus{
|
||||
Header: fixt11.Header{Header: &m.Header},
|
||||
Body: &m.Body,
|
||||
Trailer: fixt11.Trailer{Trailer: &m.Trailer},
|
||||
Message: m,
|
||||
}
|
||||
}
|
||||
|
||||
// ToMessage returns a quickfix.Message instance.
|
||||
func (m ListStatus) ToMessage() *quickfix.Message {
|
||||
return m.Message
|
||||
}
|
||||
|
||||
// New returns a ListStatus initialized with the required fields for ListStatus.
|
||||
func New(listid field.ListIDField, liststatustype field.ListStatusTypeField, norpts field.NoRptsField, listorderstatus field.ListOrderStatusField, rptseq field.RptSeqField, totnoorders field.TotNoOrdersField) (m ListStatus) {
|
||||
m.Message = quickfix.NewMessage()
|
||||
m.Header = fixt11.NewHeader(&m.Message.Header)
|
||||
m.Body = &m.Message.Body
|
||||
m.Trailer.Trailer = &m.Message.Trailer
|
||||
|
||||
m.Header.Set(field.NewMsgType("N"))
|
||||
m.Set(listid)
|
||||
m.Set(liststatustype)
|
||||
m.Set(norpts)
|
||||
m.Set(listorderstatus)
|
||||
m.Set(rptseq)
|
||||
m.Set(totnoorders)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
// A RouteOut is the callback type that should be implemented for routing Message.
|
||||
type RouteOut func(msg ListStatus, 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 "8", "N", r
|
||||
}
|
||||
|
||||
// SetTransactTime sets TransactTime, Tag 60.
|
||||
func (m ListStatus) SetTransactTime(v time.Time) {
|
||||
m.Set(field.NewTransactTime(v))
|
||||
}
|
||||
|
||||
// SetListID sets ListID, Tag 66.
|
||||
func (m ListStatus) SetListID(v string) {
|
||||
m.Set(field.NewListID(v))
|
||||
}
|
||||
|
||||
// SetTotNoOrders sets TotNoOrders, Tag 68.
|
||||
func (m ListStatus) SetTotNoOrders(v int) {
|
||||
m.Set(field.NewTotNoOrders(v))
|
||||
}
|
||||
|
||||
// SetNoOrders sets NoOrders, Tag 73.
|
||||
func (m ListStatus) SetNoOrders(f NoOrdersRepeatingGroup) {
|
||||
m.SetGroup(f)
|
||||
}
|
||||
|
||||
// SetNoRpts sets NoRpts, Tag 82.
|
||||
func (m ListStatus) SetNoRpts(v int) {
|
||||
m.Set(field.NewNoRpts(v))
|
||||
}
|
||||
|
||||
// SetRptSeq sets RptSeq, Tag 83.
|
||||
func (m ListStatus) SetRptSeq(v int) {
|
||||
m.Set(field.NewRptSeq(v))
|
||||
}
|
||||
|
||||
// SetListStatusType sets ListStatusType, Tag 429.
|
||||
func (m ListStatus) SetListStatusType(v enum.ListStatusType) {
|
||||
m.Set(field.NewListStatusType(v))
|
||||
}
|
||||
|
||||
// SetListOrderStatus sets ListOrderStatus, Tag 431.
|
||||
func (m ListStatus) SetListOrderStatus(v enum.ListOrderStatus) {
|
||||
m.Set(field.NewListOrderStatus(v))
|
||||
}
|
||||
|
||||
// SetListStatusText sets ListStatusText, Tag 444.
|
||||
func (m ListStatus) SetListStatusText(v string) {
|
||||
m.Set(field.NewListStatusText(v))
|
||||
}
|
||||
|
||||
// SetEncodedListStatusTextLen sets EncodedListStatusTextLen, Tag 445.
|
||||
func (m ListStatus) SetEncodedListStatusTextLen(v int) {
|
||||
m.Set(field.NewEncodedListStatusTextLen(v))
|
||||
}
|
||||
|
||||
// SetEncodedListStatusText sets EncodedListStatusText, Tag 446.
|
||||
func (m ListStatus) SetEncodedListStatusText(v string) {
|
||||
m.Set(field.NewEncodedListStatusText(v))
|
||||
}
|
||||
|
||||
// SetLastFragment sets LastFragment, Tag 893.
|
||||
func (m ListStatus) SetLastFragment(v bool) {
|
||||
m.Set(field.NewLastFragment(v))
|
||||
}
|
||||
|
||||
// SetContingencyType sets ContingencyType, Tag 1385.
|
||||
func (m ListStatus) SetContingencyType(v enum.ContingencyType) {
|
||||
m.Set(field.NewContingencyType(v))
|
||||
}
|
||||
|
||||
// SetListRejectReason sets ListRejectReason, Tag 1386.
|
||||
func (m ListStatus) SetListRejectReason(v enum.ListRejectReason) {
|
||||
m.Set(field.NewListRejectReason(v))
|
||||
}
|
||||
|
||||
// GetTransactTime gets TransactTime, Tag 60.
|
||||
func (m ListStatus) 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 ListStatus) GetListID() (v string, err quickfix.MessageRejectError) {
|
||||
var f field.ListIDField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetTotNoOrders gets TotNoOrders, Tag 68.
|
||||
func (m ListStatus) GetTotNoOrders() (v int, err quickfix.MessageRejectError) {
|
||||
var f field.TotNoOrdersField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetNoOrders gets NoOrders, Tag 73.
|
||||
func (m ListStatus) GetNoOrders() (NoOrdersRepeatingGroup, quickfix.MessageRejectError) {
|
||||
f := NewNoOrdersRepeatingGroup()
|
||||
err := m.GetGroup(f)
|
||||
return f, err
|
||||
}
|
||||
|
||||
// GetNoRpts gets NoRpts, Tag 82.
|
||||
func (m ListStatus) GetNoRpts() (v int, err quickfix.MessageRejectError) {
|
||||
var f field.NoRptsField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetRptSeq gets RptSeq, Tag 83.
|
||||
func (m ListStatus) GetRptSeq() (v int, err quickfix.MessageRejectError) {
|
||||
var f field.RptSeqField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetListStatusType gets ListStatusType, Tag 429.
|
||||
func (m ListStatus) GetListStatusType() (v enum.ListStatusType, err quickfix.MessageRejectError) {
|
||||
var f field.ListStatusTypeField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetListOrderStatus gets ListOrderStatus, Tag 431.
|
||||
func (m ListStatus) GetListOrderStatus() (v enum.ListOrderStatus, err quickfix.MessageRejectError) {
|
||||
var f field.ListOrderStatusField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetListStatusText gets ListStatusText, Tag 444.
|
||||
func (m ListStatus) GetListStatusText() (v string, err quickfix.MessageRejectError) {
|
||||
var f field.ListStatusTextField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetEncodedListStatusTextLen gets EncodedListStatusTextLen, Tag 445.
|
||||
func (m ListStatus) GetEncodedListStatusTextLen() (v int, err quickfix.MessageRejectError) {
|
||||
var f field.EncodedListStatusTextLenField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetEncodedListStatusText gets EncodedListStatusText, Tag 446.
|
||||
func (m ListStatus) GetEncodedListStatusText() (v string, err quickfix.MessageRejectError) {
|
||||
var f field.EncodedListStatusTextField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetLastFragment gets LastFragment, Tag 893.
|
||||
func (m ListStatus) GetLastFragment() (v bool, err quickfix.MessageRejectError) {
|
||||
var f field.LastFragmentField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetContingencyType gets ContingencyType, Tag 1385.
|
||||
func (m ListStatus) GetContingencyType() (v enum.ContingencyType, err quickfix.MessageRejectError) {
|
||||
var f field.ContingencyTypeField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetListRejectReason gets ListRejectReason, Tag 1386.
|
||||
func (m ListStatus) GetListRejectReason() (v enum.ListRejectReason, err quickfix.MessageRejectError) {
|
||||
var f field.ListRejectReasonField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// HasTransactTime returns true if TransactTime is present, Tag 60.
|
||||
func (m ListStatus) HasTransactTime() bool {
|
||||
return m.Has(tag.TransactTime)
|
||||
}
|
||||
|
||||
// HasListID returns true if ListID is present, Tag 66.
|
||||
func (m ListStatus) HasListID() bool {
|
||||
return m.Has(tag.ListID)
|
||||
}
|
||||
|
||||
// HasTotNoOrders returns true if TotNoOrders is present, Tag 68.
|
||||
func (m ListStatus) HasTotNoOrders() bool {
|
||||
return m.Has(tag.TotNoOrders)
|
||||
}
|
||||
|
||||
// HasNoOrders returns true if NoOrders is present, Tag 73.
|
||||
func (m ListStatus) HasNoOrders() bool {
|
||||
return m.Has(tag.NoOrders)
|
||||
}
|
||||
|
||||
// HasNoRpts returns true if NoRpts is present, Tag 82.
|
||||
func (m ListStatus) HasNoRpts() bool {
|
||||
return m.Has(tag.NoRpts)
|
||||
}
|
||||
|
||||
// HasRptSeq returns true if RptSeq is present, Tag 83.
|
||||
func (m ListStatus) HasRptSeq() bool {
|
||||
return m.Has(tag.RptSeq)
|
||||
}
|
||||
|
||||
// HasListStatusType returns true if ListStatusType is present, Tag 429.
|
||||
func (m ListStatus) HasListStatusType() bool {
|
||||
return m.Has(tag.ListStatusType)
|
||||
}
|
||||
|
||||
// HasListOrderStatus returns true if ListOrderStatus is present, Tag 431.
|
||||
func (m ListStatus) HasListOrderStatus() bool {
|
||||
return m.Has(tag.ListOrderStatus)
|
||||
}
|
||||
|
||||
// HasListStatusText returns true if ListStatusText is present, Tag 444.
|
||||
func (m ListStatus) HasListStatusText() bool {
|
||||
return m.Has(tag.ListStatusText)
|
||||
}
|
||||
|
||||
// HasEncodedListStatusTextLen returns true if EncodedListStatusTextLen is present, Tag 445.
|
||||
func (m ListStatus) HasEncodedListStatusTextLen() bool {
|
||||
return m.Has(tag.EncodedListStatusTextLen)
|
||||
}
|
||||
|
||||
// HasEncodedListStatusText returns true if EncodedListStatusText is present, Tag 446.
|
||||
func (m ListStatus) HasEncodedListStatusText() bool {
|
||||
return m.Has(tag.EncodedListStatusText)
|
||||
}
|
||||
|
||||
// HasLastFragment returns true if LastFragment is present, Tag 893.
|
||||
func (m ListStatus) HasLastFragment() bool {
|
||||
return m.Has(tag.LastFragment)
|
||||
}
|
||||
|
||||
// HasContingencyType returns true if ContingencyType is present, Tag 1385.
|
||||
func (m ListStatus) HasContingencyType() bool {
|
||||
return m.Has(tag.ContingencyType)
|
||||
}
|
||||
|
||||
// HasListRejectReason returns true if ListRejectReason is present, Tag 1386.
|
||||
func (m ListStatus) HasListRejectReason() bool {
|
||||
return m.Has(tag.ListRejectReason)
|
||||
}
|
||||
|
||||
// NoOrders is a repeating group element, Tag 73.
|
||||
type NoOrders struct {
|
||||
*quickfix.Group
|
||||
}
|
||||
|
||||
// SetClOrdID sets ClOrdID, Tag 11.
|
||||
func (m NoOrders) SetClOrdID(v string) {
|
||||
m.Set(field.NewClOrdID(v))
|
||||
}
|
||||
|
||||
// SetSecondaryClOrdID sets SecondaryClOrdID, Tag 526.
|
||||
func (m NoOrders) SetSecondaryClOrdID(v string) {
|
||||
m.Set(field.NewSecondaryClOrdID(v))
|
||||
}
|
||||
|
||||
// SetCumQty sets CumQty, Tag 14.
|
||||
func (m NoOrders) SetCumQty(value decimal.Decimal, scale int32) {
|
||||
m.Set(field.NewCumQty(value, scale))
|
||||
}
|
||||
|
||||
// SetOrdStatus sets OrdStatus, Tag 39.
|
||||
func (m NoOrders) SetOrdStatus(v enum.OrdStatus) {
|
||||
m.Set(field.NewOrdStatus(v))
|
||||
}
|
||||
|
||||
// SetWorkingIndicator sets WorkingIndicator, Tag 636.
|
||||
func (m NoOrders) SetWorkingIndicator(v bool) {
|
||||
m.Set(field.NewWorkingIndicator(v))
|
||||
}
|
||||
|
||||
// SetLeavesQty sets LeavesQty, Tag 151.
|
||||
func (m NoOrders) SetLeavesQty(value decimal.Decimal, scale int32) {
|
||||
m.Set(field.NewLeavesQty(value, scale))
|
||||
}
|
||||
|
||||
// SetCxlQty sets CxlQty, Tag 84.
|
||||
func (m NoOrders) SetCxlQty(value decimal.Decimal, scale int32) {
|
||||
m.Set(field.NewCxlQty(value, scale))
|
||||
}
|
||||
|
||||
// SetAvgPx sets AvgPx, Tag 6.
|
||||
func (m NoOrders) SetAvgPx(value decimal.Decimal, scale int32) {
|
||||
m.Set(field.NewAvgPx(value, scale))
|
||||
}
|
||||
|
||||
// SetOrdRejReason sets OrdRejReason, Tag 103.
|
||||
func (m NoOrders) SetOrdRejReason(v enum.OrdRejReason) {
|
||||
m.Set(field.NewOrdRejReason(v))
|
||||
}
|
||||
|
||||
// SetText sets Text, Tag 58.
|
||||
func (m NoOrders) SetText(v string) {
|
||||
m.Set(field.NewText(v))
|
||||
}
|
||||
|
||||
// SetEncodedTextLen sets EncodedTextLen, Tag 354.
|
||||
func (m NoOrders) SetEncodedTextLen(v int) {
|
||||
m.Set(field.NewEncodedTextLen(v))
|
||||
}
|
||||
|
||||
// SetEncodedText sets EncodedText, Tag 355.
|
||||
func (m NoOrders) SetEncodedText(v string) {
|
||||
m.Set(field.NewEncodedText(v))
|
||||
}
|
||||
|
||||
// SetOrderID sets OrderID, Tag 37.
|
||||
func (m NoOrders) SetOrderID(v string) {
|
||||
m.Set(field.NewOrderID(v))
|
||||
}
|
||||
|
||||
// GetClOrdID gets ClOrdID, Tag 11.
|
||||
func (m NoOrders) GetClOrdID() (v string, err quickfix.MessageRejectError) {
|
||||
var f field.ClOrdIDField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetSecondaryClOrdID gets SecondaryClOrdID, Tag 526.
|
||||
func (m NoOrders) GetSecondaryClOrdID() (v string, err quickfix.MessageRejectError) {
|
||||
var f field.SecondaryClOrdIDField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetCumQty gets CumQty, Tag 14.
|
||||
func (m NoOrders) GetCumQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
||||
var f field.CumQtyField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetOrdStatus gets OrdStatus, Tag 39.
|
||||
func (m NoOrders) GetOrdStatus() (v enum.OrdStatus, err quickfix.MessageRejectError) {
|
||||
var f field.OrdStatusField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetWorkingIndicator gets WorkingIndicator, Tag 636.
|
||||
func (m NoOrders) GetWorkingIndicator() (v bool, err quickfix.MessageRejectError) {
|
||||
var f field.WorkingIndicatorField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetLeavesQty gets LeavesQty, Tag 151.
|
||||
func (m NoOrders) GetLeavesQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
||||
var f field.LeavesQtyField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetCxlQty gets CxlQty, Tag 84.
|
||||
func (m NoOrders) GetCxlQty() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
||||
var f field.CxlQtyField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetAvgPx gets AvgPx, Tag 6.
|
||||
func (m NoOrders) GetAvgPx() (v decimal.Decimal, err quickfix.MessageRejectError) {
|
||||
var f field.AvgPxField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetOrdRejReason gets OrdRejReason, Tag 103.
|
||||
func (m NoOrders) GetOrdRejReason() (v enum.OrdRejReason, err quickfix.MessageRejectError) {
|
||||
var f field.OrdRejReasonField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetText gets Text, Tag 58.
|
||||
func (m NoOrders) GetText() (v string, err quickfix.MessageRejectError) {
|
||||
var f field.TextField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetEncodedTextLen gets EncodedTextLen, Tag 354.
|
||||
func (m NoOrders) 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 NoOrders) GetEncodedText() (v string, err quickfix.MessageRejectError) {
|
||||
var f field.EncodedTextField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// GetOrderID gets OrderID, Tag 37.
|
||||
func (m NoOrders) GetOrderID() (v string, err quickfix.MessageRejectError) {
|
||||
var f field.OrderIDField
|
||||
if err = m.Get(&f); err == nil {
|
||||
v = f.Value()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// HasClOrdID returns true if ClOrdID is present, Tag 11.
|
||||
func (m NoOrders) HasClOrdID() bool {
|
||||
return m.Has(tag.ClOrdID)
|
||||
}
|
||||
|
||||
// HasSecondaryClOrdID returns true if SecondaryClOrdID is present, Tag 526.
|
||||
func (m NoOrders) HasSecondaryClOrdID() bool {
|
||||
return m.Has(tag.SecondaryClOrdID)
|
||||
}
|
||||
|
||||
// HasCumQty returns true if CumQty is present, Tag 14.
|
||||
func (m NoOrders) HasCumQty() bool {
|
||||
return m.Has(tag.CumQty)
|
||||
}
|
||||
|
||||
// HasOrdStatus returns true if OrdStatus is present, Tag 39.
|
||||
func (m NoOrders) HasOrdStatus() bool {
|
||||
return m.Has(tag.OrdStatus)
|
||||
}
|
||||
|
||||
// HasWorkingIndicator returns true if WorkingIndicator is present, Tag 636.
|
||||
func (m NoOrders) HasWorkingIndicator() bool {
|
||||
return m.Has(tag.WorkingIndicator)
|
||||
}
|
||||
|
||||
// HasLeavesQty returns true if LeavesQty is present, Tag 151.
|
||||
func (m NoOrders) HasLeavesQty() bool {
|
||||
return m.Has(tag.LeavesQty)
|
||||
}
|
||||
|
||||
// HasCxlQty returns true if CxlQty is present, Tag 84.
|
||||
func (m NoOrders) HasCxlQty() bool {
|
||||
return m.Has(tag.CxlQty)
|
||||
}
|
||||
|
||||
// HasAvgPx returns true if AvgPx is present, Tag 6.
|
||||
func (m NoOrders) HasAvgPx() bool {
|
||||
return m.Has(tag.AvgPx)
|
||||
}
|
||||
|
||||
// HasOrdRejReason returns true if OrdRejReason is present, Tag 103.
|
||||
func (m NoOrders) HasOrdRejReason() bool {
|
||||
return m.Has(tag.OrdRejReason)
|
||||
}
|
||||
|
||||
// HasText returns true if Text is present, Tag 58.
|
||||
func (m NoOrders) HasText() bool {
|
||||
return m.Has(tag.Text)
|
||||
}
|
||||
|
||||
// HasEncodedTextLen returns true if EncodedTextLen is present, Tag 354.
|
||||
func (m NoOrders) HasEncodedTextLen() bool {
|
||||
return m.Has(tag.EncodedTextLen)
|
||||
}
|
||||
|
||||
// HasEncodedText returns true if EncodedText is present, Tag 355.
|
||||
func (m NoOrders) HasEncodedText() bool {
|
||||
return m.Has(tag.EncodedText)
|
||||
}
|
||||
|
||||
// HasOrderID returns true if OrderID is present, Tag 37.
|
||||
func (m NoOrders) HasOrderID() bool {
|
||||
return m.Has(tag.OrderID)
|
||||
}
|
||||
|
||||
// NoOrdersRepeatingGroup is a repeating group, Tag 73.
|
||||
type NoOrdersRepeatingGroup struct {
|
||||
*quickfix.RepeatingGroup
|
||||
}
|
||||
|
||||
// NewNoOrdersRepeatingGroup returns an initialized, NoOrdersRepeatingGroup.
|
||||
func NewNoOrdersRepeatingGroup() NoOrdersRepeatingGroup {
|
||||
return NoOrdersRepeatingGroup{
|
||||
quickfix.NewRepeatingGroup(
|
||||
tag.NoOrders,
|
||||
quickfix.GroupTemplate{
|
||||
quickfix.GroupElement(tag.ClOrdID),
|
||||
quickfix.GroupElement(tag.SecondaryClOrdID),
|
||||
quickfix.GroupElement(tag.CumQty),
|
||||
quickfix.GroupElement(tag.OrdStatus),
|
||||
quickfix.GroupElement(tag.WorkingIndicator),
|
||||
quickfix.GroupElement(tag.LeavesQty),
|
||||
quickfix.GroupElement(tag.CxlQty),
|
||||
quickfix.GroupElement(tag.AvgPx),
|
||||
quickfix.GroupElement(tag.OrdRejReason),
|
||||
quickfix.GroupElement(tag.Text),
|
||||
quickfix.GroupElement(tag.EncodedTextLen),
|
||||
quickfix.GroupElement(tag.EncodedText),
|
||||
quickfix.GroupElement(tag.OrderID),
|
||||
},
|
||||
),
|
||||
}
|
||||
}
|
||||
|
||||
// Add create and append a new NoOrders to this group.
|
||||
func (m NoOrdersRepeatingGroup) Add() NoOrders {
|
||||
g := m.RepeatingGroup.Add()
|
||||
return NoOrders{g}
|
||||
}
|
||||
|
||||
// Get returns the ith NoOrders in the NoOrdersRepeatinGroup.
|
||||
func (m NoOrdersRepeatingGroup) Get(i int) NoOrders {
|
||||
return NoOrders{m.RepeatingGroup.Get(i)}
|
||||
}
|
||||
Reference in New Issue
Block a user