Class: Quickfix::AccruedInterestRate

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



2460
2461
2462
# File 'lib/quickfix_fields.rb', line 2460

def AccruedInterestRate.field
	return 158
end