Class: Quickfix::ThresholdAmount

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ThresholdAmount

Returns a new instance of 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

Class Method Details

.fieldObject



11313
11314
11315
# File 'lib/quickfix_fields.rb', line 11313

def ThresholdAmount.field
  return 834
end