Class: Quickfix::AllocCommissionAmountType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AllocCommissionAmountType

Returns a new instance of AllocCommissionAmountType.



63043
63044
63045
63046
63047
63048
63049
# File 'lib/quickfix_fields.rb', line 63043

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