Class: Quickfix::LimitAmt

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

Returns a new instance of LimitAmt.



57570
57571
57572
57573
57574
57575
57576
# File 'lib/quickfix_fields.rb', line 57570

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

Class Method Details

.fieldObject



57567
57568
57569
# File 'lib/quickfix_fields.rb', line 57567

def LimitAmt.field
  return 2395
end