Class: Quickfix::UnderlyingFloorPrice

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

Returns a new instance of UnderlyingFloorPrice.



26630
26631
26632
26633
26634
26635
26636
# File 'lib/quickfix_fields.rb', line 26630

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

Class Method Details

.fieldObject



26627
26628
26629
# File 'lib/quickfix_fields.rb', line 26627

def UnderlyingFloorPrice.field
  return 2034
end