Class: Quickfix::UnderlyingNthToDefault

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingNthToDefault

Returns a new instance of UnderlyingNthToDefault.



26409
26410
26411
26412
26413
26414
26415
# File 'lib/quickfix_fields.rb', line 26409

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