Class: Quickfix::UnderlyingMthToDefault

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingMthToDefault



26422
26423
26424
26425
26426
26427
26428
# File 'lib/quickfix_fields.rb', line 26422

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