Class: Quickfix::GroupAmount

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

Instance Method Summary collapse

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