Class: Quickfix::TotalBidSize

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

Returns a new instance of TotalBidSize.



22873
22874
22875
22876
22877
22878
22879
# File 'lib/quickfix_fields.rb', line 22873

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

Class Method Details

.fieldObject



22870
22871
22872
# File 'lib/quickfix_fields.rb', line 22870

def TotalBidSize.field
  return 1749
end