Class: Quickfix::ThresholdAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ThresholdAmount



11316
11317
11318
11319
11320
11321
11322
# File 'lib/quickfix_fields.rb', line 11316

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