Class: Quickfix::LimitAmtRemaining

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

Returns a new instance of LimitAmtRemaining.



20078
20079
20080
20081
20082
20083
20084
# File 'lib/quickfix_fields.rb', line 20078

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

Class Method Details

.fieldObject



20075
20076
20077
# File 'lib/quickfix_fields.rb', line 20075

def LimitAmtRemaining.field
  return 1633
end