Class: Quickfix::CollateralPercentOverage

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CollateralPercentOverage

Returns a new instance of CollateralPercentOverage.



75510
75511
75512
75513
75514
75515
75516
# File 'lib/quickfix_fields.rb', line 75510

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