Class: Quickfix::MakeWholeAmount

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

Class Method Details

.fieldObject



68357
68358
68359
# File 'lib/quickfix_fields.rb', line 68357

def MakeWholeAmount.field
  return 42592
end