Class: Quickfix::MinOfferSize

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

Returns a new instance of MinOfferSize.



8729
8730
8731
8732
8733
8734
8735
# File 'lib/quickfix_fields.rb', line 8729

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

Class Method Details

.fieldObject



8726
8727
8728
# File 'lib/quickfix_fields.rb', line 8726

def MinOfferSize.field
  return 648
end