Class: Quickfix::GroupAmount

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

Returns a new instance of GroupAmount.



76524
76525
76526
76527
76528
76529
76530
# File 'lib/quickfix_fields.rb', line 76524

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

Class Method Details

.fieldObject



76521
76522
76523
# File 'lib/quickfix_fields.rb', line 76521

def GroupAmount.field
  return 2759
end