Class: Quickfix::UnderlyingNthToDefault

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

Class Method Details

.fieldObject



26406
26407
26408
# File 'lib/quickfix_fields.rb', line 26406

def UnderlyingNthToDefault.field
  return 2017
end