Class: Quickfix::TotalOfferSize

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

Returns a new instance of TotalOfferSize.



22886
22887
22888
22889
22890
22891
22892
# File 'lib/quickfix_fields.rb', line 22886

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

Class Method Details

.fieldObject



22883
22884
22885
# File 'lib/quickfix_fields.rb', line 22883

def TotalOfferSize.field
  return 1750
end