// Code generated by quickfix. DO NOT EDIT. package allocationreportack import ( "time" "github.com/shopspring/decimal" "quantex.com/qfixpt/quickfix" "quantex.com/qfixpt/quickfix/gen/enum" "quantex.com/qfixpt/quickfix/gen/field" "quantex.com/qfixpt/quickfix/gen/fixt11" "quantex.com/qfixpt/quickfix/gen/tag" ) // AllocationReportAck is the fix50 AllocationReportAck type, MsgType = AT. type AllocationReportAck struct { fixt11.Header *quickfix.Body fixt11.Trailer Message *quickfix.Message } // FromMessage creates a AllocationReportAck from a quickfix.Message instance. func FromMessage(m *quickfix.Message) AllocationReportAck { return AllocationReportAck{ 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 AllocationReportAck) ToMessage() *quickfix.Message { return m.Message } // New returns a AllocationReportAck initialized with the required fields for AllocationReportAck. func New(allocreportid field.AllocReportIDField, allocid field.AllocIDField) (m AllocationReportAck) { 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("AT")) m.Set(allocreportid) m.Set(allocid) return } // A RouteOut is the callback type that should be implemented for routing Message. type RouteOut func(msg AllocationReportAck, 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 "7", "AT", r } // SetQuantity sets Quantity, Tag 53. func (m AllocationReportAck) SetQuantity(value decimal.Decimal, scale int32) { m.Set(field.NewQuantity(value, scale)) } // SetText sets Text, Tag 58. func (m AllocationReportAck) SetText(v string) { m.Set(field.NewText(v)) } // SetTransactTime sets TransactTime, Tag 60. func (m AllocationReportAck) SetTransactTime(v time.Time) { m.Set(field.NewTransactTime(v)) } // SetAllocID sets AllocID, Tag 70. func (m AllocationReportAck) SetAllocID(v string) { m.Set(field.NewAllocID(v)) } // SetAllocTransType sets AllocTransType, Tag 71. func (m AllocationReportAck) SetAllocTransType(v enum.AllocTransType) { m.Set(field.NewAllocTransType(v)) } // SetTradeDate sets TradeDate, Tag 75. func (m AllocationReportAck) SetTradeDate(v string) { m.Set(field.NewTradeDate(v)) } // SetNoAllocs sets NoAllocs, Tag 78. func (m AllocationReportAck) SetNoAllocs(f NoAllocsRepeatingGroup) { m.SetGroup(f) } // SetAllocStatus sets AllocStatus, Tag 87. func (m AllocationReportAck) SetAllocStatus(v enum.AllocStatus) { m.Set(field.NewAllocStatus(v)) } // SetAllocRejCode sets AllocRejCode, Tag 88. func (m AllocationReportAck) SetAllocRejCode(v enum.AllocRejCode) { m.Set(field.NewAllocRejCode(v)) } // SetSecurityType sets SecurityType, Tag 167. func (m AllocationReportAck) SetSecurityType(v enum.SecurityType) { m.Set(field.NewSecurityType(v)) } // SetEncodedTextLen sets EncodedTextLen, Tag 354. func (m AllocationReportAck) SetEncodedTextLen(v int) { m.Set(field.NewEncodedTextLen(v)) } // SetEncodedText sets EncodedText, Tag 355. func (m AllocationReportAck) SetEncodedText(v string) { m.Set(field.NewEncodedText(v)) } // SetNoPartyIDs sets NoPartyIDs, Tag 453. func (m AllocationReportAck) SetNoPartyIDs(f NoPartyIDsRepeatingGroup) { m.SetGroup(f) } // SetProduct sets Product, Tag 460. func (m AllocationReportAck) SetProduct(v enum.Product) { m.Set(field.NewProduct(v)) } // SetMatchStatus sets MatchStatus, Tag 573. func (m AllocationReportAck) SetMatchStatus(v enum.MatchStatus) { m.Set(field.NewMatchStatus(v)) } // SetClearingBusinessDate sets ClearingBusinessDate, Tag 715. func (m AllocationReportAck) SetClearingBusinessDate(v string) { m.Set(field.NewClearingBusinessDate(v)) } // SetAllocReportID sets AllocReportID, Tag 755. func (m AllocationReportAck) SetAllocReportID(v string) { m.Set(field.NewAllocReportID(v)) } // SetSecondaryAllocID sets SecondaryAllocID, Tag 793. func (m AllocationReportAck) SetSecondaryAllocID(v string) { m.Set(field.NewSecondaryAllocID(v)) } // SetAllocReportType sets AllocReportType, Tag 794. func (m AllocationReportAck) SetAllocReportType(v enum.AllocReportType) { m.Set(field.NewAllocReportType(v)) } // SetAllocIntermedReqType sets AllocIntermedReqType, Tag 808. func (m AllocationReportAck) SetAllocIntermedReqType(v enum.AllocIntermedReqType) { m.Set(field.NewAllocIntermedReqType(v)) } // SetAvgPxIndicator sets AvgPxIndicator, Tag 819. func (m AllocationReportAck) SetAvgPxIndicator(v enum.AvgPxIndicator) { m.Set(field.NewAvgPxIndicator(v)) } // GetQuantity gets Quantity, Tag 53. func (m AllocationReportAck) GetQuantity() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.QuantityField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetText gets Text, Tag 58. func (m AllocationReportAck) 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 AllocationReportAck) GetTransactTime() (v time.Time, err quickfix.MessageRejectError) { var f field.TransactTimeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAllocID gets AllocID, Tag 70. func (m AllocationReportAck) GetAllocID() (v string, err quickfix.MessageRejectError) { var f field.AllocIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAllocTransType gets AllocTransType, Tag 71. func (m AllocationReportAck) GetAllocTransType() (v enum.AllocTransType, err quickfix.MessageRejectError) { var f field.AllocTransTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetTradeDate gets TradeDate, Tag 75. func (m AllocationReportAck) GetTradeDate() (v string, err quickfix.MessageRejectError) { var f field.TradeDateField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoAllocs gets NoAllocs, Tag 78. func (m AllocationReportAck) GetNoAllocs() (NoAllocsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoAllocsRepeatingGroup() err := m.GetGroup(f) return f, err } // GetAllocStatus gets AllocStatus, Tag 87. func (m AllocationReportAck) GetAllocStatus() (v enum.AllocStatus, err quickfix.MessageRejectError) { var f field.AllocStatusField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAllocRejCode gets AllocRejCode, Tag 88. func (m AllocationReportAck) GetAllocRejCode() (v enum.AllocRejCode, err quickfix.MessageRejectError) { var f field.AllocRejCodeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecurityType gets SecurityType, Tag 167. func (m AllocationReportAck) GetSecurityType() (v enum.SecurityType, err quickfix.MessageRejectError) { var f field.SecurityTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetEncodedTextLen gets EncodedTextLen, Tag 354. func (m AllocationReportAck) 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 AllocationReportAck) GetEncodedText() (v string, err quickfix.MessageRejectError) { var f field.EncodedTextField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoPartyIDs gets NoPartyIDs, Tag 453. func (m AllocationReportAck) GetNoPartyIDs() (NoPartyIDsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoPartyIDsRepeatingGroup() err := m.GetGroup(f) return f, err } // GetProduct gets Product, Tag 460. func (m AllocationReportAck) GetProduct() (v enum.Product, err quickfix.MessageRejectError) { var f field.ProductField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetMatchStatus gets MatchStatus, Tag 573. func (m AllocationReportAck) GetMatchStatus() (v enum.MatchStatus, err quickfix.MessageRejectError) { var f field.MatchStatusField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetClearingBusinessDate gets ClearingBusinessDate, Tag 715. func (m AllocationReportAck) GetClearingBusinessDate() (v string, err quickfix.MessageRejectError) { var f field.ClearingBusinessDateField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAllocReportID gets AllocReportID, Tag 755. func (m AllocationReportAck) GetAllocReportID() (v string, err quickfix.MessageRejectError) { var f field.AllocReportIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecondaryAllocID gets SecondaryAllocID, Tag 793. func (m AllocationReportAck) GetSecondaryAllocID() (v string, err quickfix.MessageRejectError) { var f field.SecondaryAllocIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAllocReportType gets AllocReportType, Tag 794. func (m AllocationReportAck) GetAllocReportType() (v enum.AllocReportType, err quickfix.MessageRejectError) { var f field.AllocReportTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAllocIntermedReqType gets AllocIntermedReqType, Tag 808. func (m AllocationReportAck) GetAllocIntermedReqType() (v enum.AllocIntermedReqType, err quickfix.MessageRejectError) { var f field.AllocIntermedReqTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAvgPxIndicator gets AvgPxIndicator, Tag 819. func (m AllocationReportAck) GetAvgPxIndicator() (v enum.AvgPxIndicator, err quickfix.MessageRejectError) { var f field.AvgPxIndicatorField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasQuantity returns true if Quantity is present, Tag 53. func (m AllocationReportAck) HasQuantity() bool { return m.Has(tag.Quantity) } // HasText returns true if Text is present, Tag 58. func (m AllocationReportAck) HasText() bool { return m.Has(tag.Text) } // HasTransactTime returns true if TransactTime is present, Tag 60. func (m AllocationReportAck) HasTransactTime() bool { return m.Has(tag.TransactTime) } // HasAllocID returns true if AllocID is present, Tag 70. func (m AllocationReportAck) HasAllocID() bool { return m.Has(tag.AllocID) } // HasAllocTransType returns true if AllocTransType is present, Tag 71. func (m AllocationReportAck) HasAllocTransType() bool { return m.Has(tag.AllocTransType) } // HasTradeDate returns true if TradeDate is present, Tag 75. func (m AllocationReportAck) HasTradeDate() bool { return m.Has(tag.TradeDate) } // HasNoAllocs returns true if NoAllocs is present, Tag 78. func (m AllocationReportAck) HasNoAllocs() bool { return m.Has(tag.NoAllocs) } // HasAllocStatus returns true if AllocStatus is present, Tag 87. func (m AllocationReportAck) HasAllocStatus() bool { return m.Has(tag.AllocStatus) } // HasAllocRejCode returns true if AllocRejCode is present, Tag 88. func (m AllocationReportAck) HasAllocRejCode() bool { return m.Has(tag.AllocRejCode) } // HasSecurityType returns true if SecurityType is present, Tag 167. func (m AllocationReportAck) HasSecurityType() bool { return m.Has(tag.SecurityType) } // HasEncodedTextLen returns true if EncodedTextLen is present, Tag 354. func (m AllocationReportAck) HasEncodedTextLen() bool { return m.Has(tag.EncodedTextLen) } // HasEncodedText returns true if EncodedText is present, Tag 355. func (m AllocationReportAck) HasEncodedText() bool { return m.Has(tag.EncodedText) } // HasNoPartyIDs returns true if NoPartyIDs is present, Tag 453. func (m AllocationReportAck) HasNoPartyIDs() bool { return m.Has(tag.NoPartyIDs) } // HasProduct returns true if Product is present, Tag 460. func (m AllocationReportAck) HasProduct() bool { return m.Has(tag.Product) } // HasMatchStatus returns true if MatchStatus is present, Tag 573. func (m AllocationReportAck) HasMatchStatus() bool { return m.Has(tag.MatchStatus) } // HasClearingBusinessDate returns true if ClearingBusinessDate is present, Tag 715. func (m AllocationReportAck) HasClearingBusinessDate() bool { return m.Has(tag.ClearingBusinessDate) } // HasAllocReportID returns true if AllocReportID is present, Tag 755. func (m AllocationReportAck) HasAllocReportID() bool { return m.Has(tag.AllocReportID) } // HasSecondaryAllocID returns true if SecondaryAllocID is present, Tag 793. func (m AllocationReportAck) HasSecondaryAllocID() bool { return m.Has(tag.SecondaryAllocID) } // HasAllocReportType returns true if AllocReportType is present, Tag 794. func (m AllocationReportAck) HasAllocReportType() bool { return m.Has(tag.AllocReportType) } // HasAllocIntermedReqType returns true if AllocIntermedReqType is present, Tag 808. func (m AllocationReportAck) HasAllocIntermedReqType() bool { return m.Has(tag.AllocIntermedReqType) } // HasAvgPxIndicator returns true if AvgPxIndicator is present, Tag 819. func (m AllocationReportAck) HasAvgPxIndicator() bool { return m.Has(tag.AvgPxIndicator) } // NoAllocs is a repeating group element, Tag 78. type NoAllocs struct { *quickfix.Group } // SetAllocAccount sets AllocAccount, Tag 79. func (m NoAllocs) SetAllocAccount(v string) { m.Set(field.NewAllocAccount(v)) } // SetAllocAcctIDSource sets AllocAcctIDSource, Tag 661. func (m NoAllocs) SetAllocAcctIDSource(v int) { m.Set(field.NewAllocAcctIDSource(v)) } // SetAllocPrice sets AllocPrice, Tag 366. func (m NoAllocs) SetAllocPrice(value decimal.Decimal, scale int32) { m.Set(field.NewAllocPrice(value, scale)) } // SetIndividualAllocID sets IndividualAllocID, Tag 467. func (m NoAllocs) SetIndividualAllocID(v string) { m.Set(field.NewIndividualAllocID(v)) } // SetIndividualAllocRejCode sets IndividualAllocRejCode, Tag 776. func (m NoAllocs) SetIndividualAllocRejCode(v int) { m.Set(field.NewIndividualAllocRejCode(v)) } // SetAllocText sets AllocText, Tag 161. func (m NoAllocs) SetAllocText(v string) { m.Set(field.NewAllocText(v)) } // SetEncodedAllocTextLen sets EncodedAllocTextLen, Tag 360. func (m NoAllocs) SetEncodedAllocTextLen(v int) { m.Set(field.NewEncodedAllocTextLen(v)) } // SetEncodedAllocText sets EncodedAllocText, Tag 361. func (m NoAllocs) SetEncodedAllocText(v string) { m.Set(field.NewEncodedAllocText(v)) } // SetSecondaryIndividualAllocID sets SecondaryIndividualAllocID, Tag 989. func (m NoAllocs) SetSecondaryIndividualAllocID(v string) { m.Set(field.NewSecondaryIndividualAllocID(v)) } // SetAllocCustomerCapacity sets AllocCustomerCapacity, Tag 993. func (m NoAllocs) SetAllocCustomerCapacity(v string) { m.Set(field.NewAllocCustomerCapacity(v)) } // SetIndividualAllocType sets IndividualAllocType, Tag 992. func (m NoAllocs) SetIndividualAllocType(v enum.IndividualAllocType) { m.Set(field.NewIndividualAllocType(v)) } // SetAllocQty sets AllocQty, Tag 80. func (m NoAllocs) SetAllocQty(value decimal.Decimal, scale int32) { m.Set(field.NewAllocQty(value, scale)) } // SetNoNestedPartyIDs sets NoNestedPartyIDs, Tag 539. func (m NoAllocs) SetNoNestedPartyIDs(f NoNestedPartyIDsRepeatingGroup) { m.SetGroup(f) } // SetAllocPositionEffect sets AllocPositionEffect, Tag 1047. func (m NoAllocs) SetAllocPositionEffect(v enum.AllocPositionEffect) { m.Set(field.NewAllocPositionEffect(v)) } // GetAllocAccount gets AllocAccount, Tag 79. func (m NoAllocs) GetAllocAccount() (v string, err quickfix.MessageRejectError) { var f field.AllocAccountField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAllocAcctIDSource gets AllocAcctIDSource, Tag 661. func (m NoAllocs) GetAllocAcctIDSource() (v int, err quickfix.MessageRejectError) { var f field.AllocAcctIDSourceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAllocPrice gets AllocPrice, Tag 366. func (m NoAllocs) GetAllocPrice() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.AllocPriceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIndividualAllocID gets IndividualAllocID, Tag 467. func (m NoAllocs) GetIndividualAllocID() (v string, err quickfix.MessageRejectError) { var f field.IndividualAllocIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIndividualAllocRejCode gets IndividualAllocRejCode, Tag 776. func (m NoAllocs) GetIndividualAllocRejCode() (v int, err quickfix.MessageRejectError) { var f field.IndividualAllocRejCodeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAllocText gets AllocText, Tag 161. func (m NoAllocs) GetAllocText() (v string, err quickfix.MessageRejectError) { var f field.AllocTextField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetEncodedAllocTextLen gets EncodedAllocTextLen, Tag 360. func (m NoAllocs) GetEncodedAllocTextLen() (v int, err quickfix.MessageRejectError) { var f field.EncodedAllocTextLenField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetEncodedAllocText gets EncodedAllocText, Tag 361. func (m NoAllocs) GetEncodedAllocText() (v string, err quickfix.MessageRejectError) { var f field.EncodedAllocTextField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetSecondaryIndividualAllocID gets SecondaryIndividualAllocID, Tag 989. func (m NoAllocs) GetSecondaryIndividualAllocID() (v string, err quickfix.MessageRejectError) { var f field.SecondaryIndividualAllocIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAllocCustomerCapacity gets AllocCustomerCapacity, Tag 993. func (m NoAllocs) GetAllocCustomerCapacity() (v string, err quickfix.MessageRejectError) { var f field.AllocCustomerCapacityField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetIndividualAllocType gets IndividualAllocType, Tag 992. func (m NoAllocs) GetIndividualAllocType() (v enum.IndividualAllocType, err quickfix.MessageRejectError) { var f field.IndividualAllocTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetAllocQty gets AllocQty, Tag 80. func (m NoAllocs) GetAllocQty() (v decimal.Decimal, err quickfix.MessageRejectError) { var f field.AllocQtyField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoNestedPartyIDs gets NoNestedPartyIDs, Tag 539. func (m NoAllocs) GetNoNestedPartyIDs() (NoNestedPartyIDsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoNestedPartyIDsRepeatingGroup() err := m.GetGroup(f) return f, err } // GetAllocPositionEffect gets AllocPositionEffect, Tag 1047. func (m NoAllocs) GetAllocPositionEffect() (v enum.AllocPositionEffect, err quickfix.MessageRejectError) { var f field.AllocPositionEffectField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasAllocAccount returns true if AllocAccount is present, Tag 79. func (m NoAllocs) HasAllocAccount() bool { return m.Has(tag.AllocAccount) } // HasAllocAcctIDSource returns true if AllocAcctIDSource is present, Tag 661. func (m NoAllocs) HasAllocAcctIDSource() bool { return m.Has(tag.AllocAcctIDSource) } // HasAllocPrice returns true if AllocPrice is present, Tag 366. func (m NoAllocs) HasAllocPrice() bool { return m.Has(tag.AllocPrice) } // HasIndividualAllocID returns true if IndividualAllocID is present, Tag 467. func (m NoAllocs) HasIndividualAllocID() bool { return m.Has(tag.IndividualAllocID) } // HasIndividualAllocRejCode returns true if IndividualAllocRejCode is present, Tag 776. func (m NoAllocs) HasIndividualAllocRejCode() bool { return m.Has(tag.IndividualAllocRejCode) } // HasAllocText returns true if AllocText is present, Tag 161. func (m NoAllocs) HasAllocText() bool { return m.Has(tag.AllocText) } // HasEncodedAllocTextLen returns true if EncodedAllocTextLen is present, Tag 360. func (m NoAllocs) HasEncodedAllocTextLen() bool { return m.Has(tag.EncodedAllocTextLen) } // HasEncodedAllocText returns true if EncodedAllocText is present, Tag 361. func (m NoAllocs) HasEncodedAllocText() bool { return m.Has(tag.EncodedAllocText) } // HasSecondaryIndividualAllocID returns true if SecondaryIndividualAllocID is present, Tag 989. func (m NoAllocs) HasSecondaryIndividualAllocID() bool { return m.Has(tag.SecondaryIndividualAllocID) } // HasAllocCustomerCapacity returns true if AllocCustomerCapacity is present, Tag 993. func (m NoAllocs) HasAllocCustomerCapacity() bool { return m.Has(tag.AllocCustomerCapacity) } // HasIndividualAllocType returns true if IndividualAllocType is present, Tag 992. func (m NoAllocs) HasIndividualAllocType() bool { return m.Has(tag.IndividualAllocType) } // HasAllocQty returns true if AllocQty is present, Tag 80. func (m NoAllocs) HasAllocQty() bool { return m.Has(tag.AllocQty) } // HasNoNestedPartyIDs returns true if NoNestedPartyIDs is present, Tag 539. func (m NoAllocs) HasNoNestedPartyIDs() bool { return m.Has(tag.NoNestedPartyIDs) } // HasAllocPositionEffect returns true if AllocPositionEffect is present, Tag 1047. func (m NoAllocs) HasAllocPositionEffect() bool { return m.Has(tag.AllocPositionEffect) } // NoNestedPartyIDs is a repeating group element, Tag 539. type NoNestedPartyIDs struct { *quickfix.Group } // SetNestedPartyID sets NestedPartyID, Tag 524. func (m NoNestedPartyIDs) SetNestedPartyID(v string) { m.Set(field.NewNestedPartyID(v)) } // SetNestedPartyIDSource sets NestedPartyIDSource, Tag 525. func (m NoNestedPartyIDs) SetNestedPartyIDSource(v string) { m.Set(field.NewNestedPartyIDSource(v)) } // SetNestedPartyRole sets NestedPartyRole, Tag 538. func (m NoNestedPartyIDs) SetNestedPartyRole(v int) { m.Set(field.NewNestedPartyRole(v)) } // SetNoNestedPartySubIDs sets NoNestedPartySubIDs, Tag 804. func (m NoNestedPartyIDs) SetNoNestedPartySubIDs(f NoNestedPartySubIDsRepeatingGroup) { m.SetGroup(f) } // GetNestedPartyID gets NestedPartyID, Tag 524. func (m NoNestedPartyIDs) GetNestedPartyID() (v string, err quickfix.MessageRejectError) { var f field.NestedPartyIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNestedPartyIDSource gets NestedPartyIDSource, Tag 525. func (m NoNestedPartyIDs) GetNestedPartyIDSource() (v string, err quickfix.MessageRejectError) { var f field.NestedPartyIDSourceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNestedPartyRole gets NestedPartyRole, Tag 538. func (m NoNestedPartyIDs) GetNestedPartyRole() (v int, err quickfix.MessageRejectError) { var f field.NestedPartyRoleField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoNestedPartySubIDs gets NoNestedPartySubIDs, Tag 804. func (m NoNestedPartyIDs) GetNoNestedPartySubIDs() (NoNestedPartySubIDsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoNestedPartySubIDsRepeatingGroup() err := m.GetGroup(f) return f, err } // HasNestedPartyID returns true if NestedPartyID is present, Tag 524. func (m NoNestedPartyIDs) HasNestedPartyID() bool { return m.Has(tag.NestedPartyID) } // HasNestedPartyIDSource returns true if NestedPartyIDSource is present, Tag 525. func (m NoNestedPartyIDs) HasNestedPartyIDSource() bool { return m.Has(tag.NestedPartyIDSource) } // HasNestedPartyRole returns true if NestedPartyRole is present, Tag 538. func (m NoNestedPartyIDs) HasNestedPartyRole() bool { return m.Has(tag.NestedPartyRole) } // HasNoNestedPartySubIDs returns true if NoNestedPartySubIDs is present, Tag 804. func (m NoNestedPartyIDs) HasNoNestedPartySubIDs() bool { return m.Has(tag.NoNestedPartySubIDs) } // NoNestedPartySubIDs is a repeating group element, Tag 804. type NoNestedPartySubIDs struct { *quickfix.Group } // SetNestedPartySubID sets NestedPartySubID, Tag 545. func (m NoNestedPartySubIDs) SetNestedPartySubID(v string) { m.Set(field.NewNestedPartySubID(v)) } // SetNestedPartySubIDType sets NestedPartySubIDType, Tag 805. func (m NoNestedPartySubIDs) SetNestedPartySubIDType(v int) { m.Set(field.NewNestedPartySubIDType(v)) } // GetNestedPartySubID gets NestedPartySubID, Tag 545. func (m NoNestedPartySubIDs) GetNestedPartySubID() (v string, err quickfix.MessageRejectError) { var f field.NestedPartySubIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNestedPartySubIDType gets NestedPartySubIDType, Tag 805. func (m NoNestedPartySubIDs) GetNestedPartySubIDType() (v int, err quickfix.MessageRejectError) { var f field.NestedPartySubIDTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasNestedPartySubID returns true if NestedPartySubID is present, Tag 545. func (m NoNestedPartySubIDs) HasNestedPartySubID() bool { return m.Has(tag.NestedPartySubID) } // HasNestedPartySubIDType returns true if NestedPartySubIDType is present, Tag 805. func (m NoNestedPartySubIDs) HasNestedPartySubIDType() bool { return m.Has(tag.NestedPartySubIDType) } // NoNestedPartySubIDsRepeatingGroup is a repeating group, Tag 804. type NoNestedPartySubIDsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoNestedPartySubIDsRepeatingGroup returns an initialized, NoNestedPartySubIDsRepeatingGroup. func NewNoNestedPartySubIDsRepeatingGroup() NoNestedPartySubIDsRepeatingGroup { return NoNestedPartySubIDsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoNestedPartySubIDs, quickfix.GroupTemplate{ quickfix.GroupElement(tag.NestedPartySubID), quickfix.GroupElement(tag.NestedPartySubIDType), }, ), } } // Add create and append a new NoNestedPartySubIDs to this group. func (m NoNestedPartySubIDsRepeatingGroup) Add() NoNestedPartySubIDs { g := m.RepeatingGroup.Add() return NoNestedPartySubIDs{g} } // Get returns the ith NoNestedPartySubIDs in the NoNestedPartySubIDsRepeatinGroup. func (m NoNestedPartySubIDsRepeatingGroup) Get(i int) NoNestedPartySubIDs { return NoNestedPartySubIDs{m.RepeatingGroup.Get(i)} } // NoNestedPartyIDsRepeatingGroup is a repeating group, Tag 539. type NoNestedPartyIDsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoNestedPartyIDsRepeatingGroup returns an initialized, NoNestedPartyIDsRepeatingGroup. func NewNoNestedPartyIDsRepeatingGroup() NoNestedPartyIDsRepeatingGroup { return NoNestedPartyIDsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoNestedPartyIDs, quickfix.GroupTemplate{ quickfix.GroupElement(tag.NestedPartyID), quickfix.GroupElement(tag.NestedPartyIDSource), quickfix.GroupElement(tag.NestedPartyRole), NewNoNestedPartySubIDsRepeatingGroup(), }, ), } } // Add create and append a new NoNestedPartyIDs to this group. func (m NoNestedPartyIDsRepeatingGroup) Add() NoNestedPartyIDs { g := m.RepeatingGroup.Add() return NoNestedPartyIDs{g} } // Get returns the ith NoNestedPartyIDs in the NoNestedPartyIDsRepeatinGroup. func (m NoNestedPartyIDsRepeatingGroup) Get(i int) NoNestedPartyIDs { return NoNestedPartyIDs{m.RepeatingGroup.Get(i)} } // NoAllocsRepeatingGroup is a repeating group, Tag 78. type NoAllocsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoAllocsRepeatingGroup returns an initialized, NoAllocsRepeatingGroup. func NewNoAllocsRepeatingGroup() NoAllocsRepeatingGroup { return NoAllocsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoAllocs, quickfix.GroupTemplate{ quickfix.GroupElement(tag.AllocAccount), quickfix.GroupElement(tag.AllocAcctIDSource), quickfix.GroupElement(tag.AllocPrice), quickfix.GroupElement(tag.IndividualAllocID), quickfix.GroupElement(tag.IndividualAllocRejCode), quickfix.GroupElement(tag.AllocText), quickfix.GroupElement(tag.EncodedAllocTextLen), quickfix.GroupElement(tag.EncodedAllocText), quickfix.GroupElement(tag.SecondaryIndividualAllocID), quickfix.GroupElement(tag.AllocCustomerCapacity), quickfix.GroupElement(tag.IndividualAllocType), quickfix.GroupElement(tag.AllocQty), NewNoNestedPartyIDsRepeatingGroup(), quickfix.GroupElement(tag.AllocPositionEffect), }, ), } } // Add create and append a new NoAllocs to this group. func (m NoAllocsRepeatingGroup) Add() NoAllocs { g := m.RepeatingGroup.Add() return NoAllocs{g} } // Get returns the ith NoAllocs in the NoAllocsRepeatinGroup. func (m NoAllocsRepeatingGroup) Get(i int) NoAllocs { return NoAllocs{m.RepeatingGroup.Get(i)} } // NoPartyIDs is a repeating group element, Tag 453. type NoPartyIDs struct { *quickfix.Group } // SetPartyID sets PartyID, Tag 448. func (m NoPartyIDs) SetPartyID(v string) { m.Set(field.NewPartyID(v)) } // SetPartyIDSource sets PartyIDSource, Tag 447. func (m NoPartyIDs) SetPartyIDSource(v enum.PartyIDSource) { m.Set(field.NewPartyIDSource(v)) } // SetPartyRole sets PartyRole, Tag 452. func (m NoPartyIDs) SetPartyRole(v enum.PartyRole) { m.Set(field.NewPartyRole(v)) } // SetNoPartySubIDs sets NoPartySubIDs, Tag 802. func (m NoPartyIDs) SetNoPartySubIDs(f NoPartySubIDsRepeatingGroup) { m.SetGroup(f) } // GetPartyID gets PartyID, Tag 448. func (m NoPartyIDs) GetPartyID() (v string, err quickfix.MessageRejectError) { var f field.PartyIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPartyIDSource gets PartyIDSource, Tag 447. func (m NoPartyIDs) GetPartyIDSource() (v enum.PartyIDSource, err quickfix.MessageRejectError) { var f field.PartyIDSourceField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPartyRole gets PartyRole, Tag 452. func (m NoPartyIDs) GetPartyRole() (v enum.PartyRole, err quickfix.MessageRejectError) { var f field.PartyRoleField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetNoPartySubIDs gets NoPartySubIDs, Tag 802. func (m NoPartyIDs) GetNoPartySubIDs() (NoPartySubIDsRepeatingGroup, quickfix.MessageRejectError) { f := NewNoPartySubIDsRepeatingGroup() err := m.GetGroup(f) return f, err } // HasPartyID returns true if PartyID is present, Tag 448. func (m NoPartyIDs) HasPartyID() bool { return m.Has(tag.PartyID) } // HasPartyIDSource returns true if PartyIDSource is present, Tag 447. func (m NoPartyIDs) HasPartyIDSource() bool { return m.Has(tag.PartyIDSource) } // HasPartyRole returns true if PartyRole is present, Tag 452. func (m NoPartyIDs) HasPartyRole() bool { return m.Has(tag.PartyRole) } // HasNoPartySubIDs returns true if NoPartySubIDs is present, Tag 802. func (m NoPartyIDs) HasNoPartySubIDs() bool { return m.Has(tag.NoPartySubIDs) } // NoPartySubIDs is a repeating group element, Tag 802. type NoPartySubIDs struct { *quickfix.Group } // SetPartySubID sets PartySubID, Tag 523. func (m NoPartySubIDs) SetPartySubID(v string) { m.Set(field.NewPartySubID(v)) } // SetPartySubIDType sets PartySubIDType, Tag 803. func (m NoPartySubIDs) SetPartySubIDType(v enum.PartySubIDType) { m.Set(field.NewPartySubIDType(v)) } // GetPartySubID gets PartySubID, Tag 523. func (m NoPartySubIDs) GetPartySubID() (v string, err quickfix.MessageRejectError) { var f field.PartySubIDField if err = m.Get(&f); err == nil { v = f.Value() } return } // GetPartySubIDType gets PartySubIDType, Tag 803. func (m NoPartySubIDs) GetPartySubIDType() (v enum.PartySubIDType, err quickfix.MessageRejectError) { var f field.PartySubIDTypeField if err = m.Get(&f); err == nil { v = f.Value() } return } // HasPartySubID returns true if PartySubID is present, Tag 523. func (m NoPartySubIDs) HasPartySubID() bool { return m.Has(tag.PartySubID) } // HasPartySubIDType returns true if PartySubIDType is present, Tag 803. func (m NoPartySubIDs) HasPartySubIDType() bool { return m.Has(tag.PartySubIDType) } // NoPartySubIDsRepeatingGroup is a repeating group, Tag 802. type NoPartySubIDsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoPartySubIDsRepeatingGroup returns an initialized, NoPartySubIDsRepeatingGroup. func NewNoPartySubIDsRepeatingGroup() NoPartySubIDsRepeatingGroup { return NoPartySubIDsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoPartySubIDs, quickfix.GroupTemplate{ quickfix.GroupElement(tag.PartySubID), quickfix.GroupElement(tag.PartySubIDType), }, ), } } // Add create and append a new NoPartySubIDs to this group. func (m NoPartySubIDsRepeatingGroup) Add() NoPartySubIDs { g := m.RepeatingGroup.Add() return NoPartySubIDs{g} } // Get returns the ith NoPartySubIDs in the NoPartySubIDsRepeatinGroup. func (m NoPartySubIDsRepeatingGroup) Get(i int) NoPartySubIDs { return NoPartySubIDs{m.RepeatingGroup.Get(i)} } // NoPartyIDsRepeatingGroup is a repeating group, Tag 453. type NoPartyIDsRepeatingGroup struct { *quickfix.RepeatingGroup } // NewNoPartyIDsRepeatingGroup returns an initialized, NoPartyIDsRepeatingGroup. func NewNoPartyIDsRepeatingGroup() NoPartyIDsRepeatingGroup { return NoPartyIDsRepeatingGroup{ quickfix.NewRepeatingGroup( tag.NoPartyIDs, quickfix.GroupTemplate{ quickfix.GroupElement(tag.PartyID), quickfix.GroupElement(tag.PartyIDSource), quickfix.GroupElement(tag.PartyRole), NewNoPartySubIDsRepeatingGroup(), }, ), } } // Add create and append a new NoPartyIDs to this group. func (m NoPartyIDsRepeatingGroup) Add() NoPartyIDs { g := m.RepeatingGroup.Add() return NoPartyIDs{g} } // Get returns the ith NoPartyIDs in the NoPartyIDsRepeatinGroup. func (m NoPartyIDsRepeatingGroup) Get(i int) NoPartyIDs { return NoPartyIDs{m.RepeatingGroup.Get(i)} }