Class: Quickfix::UnderlyingAccruedInterestAmt

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

Returns a new instance of UnderlyingAccruedInterestAmt.



78201
78202
78203
78204
78205
78206
78207
# File 'lib/quickfix_fields.rb', line 78201

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

Class Method Details

.fieldObject



78198
78199
78200
# File 'lib/quickfix_fields.rb', line 78198

def UnderlyingAccruedInterestAmt.field
	return 2885
end