Class: Quickfix::LastLimitAmt

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

Returns a new instance of LastLimitAmt.



20065
20066
20067
20068
20069
20070
20071
# File 'lib/quickfix_fields.rb', line 20065

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

Class Method Details

.fieldObject



20062
20063
20064
# File 'lib/quickfix_fields.rb', line 20062

def LastLimitAmt.field
  return 1632
end