Class: Quickfix::NoTradeAllocAmts

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) ⇒ NoTradeAllocAmts

Returns a new instance of NoTradeAllocAmts.



24160
24161
24162
24163
24164
24165
24166
# File 'lib/quickfix_fields.rb', line 24160

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

Class Method Details

.fieldObject



24157
24158
24159
# File 'lib/quickfix_fields.rb', line 24157

def NoTradeAllocAmts.field
  return 1844
end