Class: Quickfix::LegPositionLimit

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegPositionLimit

Returns a new instance of LegPositionLimit.



43218
43219
43220
43221
43222
43223
43224
# File 'lib/quickfix_fields.rb', line 43218

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