Class: Quickfix::UnderlyingLoanFacility

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingLoanFacility

Returns a new instance of UnderlyingLoanFacility.



26175
26176
26177
26178
26179
26180
26181
# File 'lib/quickfix_fields.rb', line 26175

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