Class: Quickfix::CommissionAmountSubType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CommissionAmountSubType

Returns a new instance of CommissionAmountSubType.



75965
75966
75967
75968
75969
75970
75971
# File 'lib/quickfix_fields.rb', line 75965

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