Class: Quickfix::UnderlyingMthToDefault

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingMthToDefault

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

Class Method Details

.fieldObject



26419
26420
26421
# File 'lib/quickfix_fields.rb', line 26419

def UnderlyingMthToDefault.field
  return 2018
end