Class: Quickfix::TotalAccruedInterestAmt

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

Returns a new instance of 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

Class Method Details

.fieldObject



7400
7401
7402
# File 'lib/quickfix_fields.rb', line 7400

def TotalAccruedInterestAmt.field
  return 540
end