Class: Quickfix::MakeWholeAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MakeWholeAmount

Returns a new instance of MakeWholeAmount.



68360
68361
68362
68363
68364
68365
68366
# File 'lib/quickfix_fields.rb', line 68360

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