Class: Quickfix::UnderlyingEventTimePeriod

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

Returns a new instance of UnderlyingEventTimePeriod.



26006
26007
26008
26009
26010
26011
26012
# File 'lib/quickfix_fields.rb', line 26006

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

Class Method Details

.fieldObject



26003
26004
26005
# File 'lib/quickfix_fields.rb', line 26003

def UnderlyingEventTimePeriod.field
  return 1986
end