Class: Quickfix::LegFloorPrice

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

Returns a new instance of LegFloorPrice.



43179
43180
43181
43182
43183
43184
43185
# File 'lib/quickfix_fields.rb', line 43179

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

Class Method Details

.fieldObject



43176
43177
43178
# File 'lib/quickfix_fields.rb', line 43176

def LegFloorPrice.field
  return 2201
end