Class: Quickfix::UnderlyingDirtyPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingDirtyPrice

Returns a new instance of UnderlyingDirtyPrice.



11940
11941
11942
11943
11944
11945
11946
# File 'lib/quickfix_fields.rb', line 11940

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