Class: Quickfix::DerivativePositionLimit

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ DerivativePositionLimit

Returns a new instance of DerivativePositionLimit.



16906
16907
16908
16909
16910
16911
16912
# File 'lib/quickfix_fields.rb', line 16906

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

Class Method Details

.fieldObject



16903
16904
16905
# File 'lib/quickfix_fields.rb', line 16903

def DerivativePositionLimit.field
  return 1273
end