Class: Quickfix::AccruedInterestRate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AccruedInterestRate

Returns a new instance of AccruedInterestRate.



2463
2464
2465
2466
2467
2468
2469
# File 'lib/quickfix_fields.rb', line 2463

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