Class: Quickfix::NoSideRegulatoryTradeIDs

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ NoSideRegulatoryTradeIDs

Returns a new instance of NoSideRegulatoryTradeIDs.



25811
25812
25813
25814
25815
25816
25817
# File 'lib/quickfix_fields.rb', line 25811

def initialize(data = nil)
  if( data == nil )
    super(1971)
  else
    super(1971, data)
  end
end

Class Method Details

.fieldObject



25808
25809
25810
# File 'lib/quickfix_fields.rb', line 25808

def NoSideRegulatoryTradeIDs.field
  return 1971
end