Class: Quickfix::BidSize

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

Returns a new instance of BidSize.



2216
2217
2218
2219
2220
2221
2222
# File 'lib/quickfix_fields.rb', line 2216

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

Class Method Details

.fieldObject



2213
2214
2215
# File 'lib/quickfix_fields.rb', line 2213

def BidSize.field
  return 134
end