Class: Quickfix::AccruedInterestAmt

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) ⇒ AccruedInterestAmt

Returns a new instance of AccruedInterestAmt.



2476
2477
2478
2479
2480
2481
2482
# File 'lib/quickfix_fields.rb', line 2476

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

Class Method Details

.fieldObject



2473
2474
2475
# File 'lib/quickfix_fields.rb', line 2473

def AccruedInterestAmt.field
  return 159
end