Class: Quickfix::TotalBidSize

Inherits:
DoubleField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

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