Class: Quickfix::AllocPrice

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

Returns a new instance of AllocPrice.



4608
4609
4610
4611
4612
4613
4614
# File 'lib/quickfix_fields.rb', line 4608

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

Class Method Details

.fieldObject



4605
4606
4607
# File 'lib/quickfix_fields.rb', line 4605

def AllocPrice.field
  return 366
end