Class: Quickfix::TotalAccruedInterestAmt

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TotalAccruedInterestAmt



7403
7404
7405
7406
7407
7408
7409
# File 'lib/quickfix_fields.rb', line 7403

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