Class: Quickfix::CollectAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CollectAmount

Returns a new instance of CollectAmount.



22353
22354
22355
22356
22357
22358
22359
# File 'lib/quickfix_fields.rb', line 22353

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