Class: Quickfix::UnderlyingEventTime

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from UtcTimeStampField

#<, #==, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingEventTime

Returns a new instance of UnderlyingEventTime.



25980
25981
25982
25983
25984
25985
25986
# File 'lib/quickfix_fields.rb', line 25980

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

Class Method Details

.fieldObject



25977
25978
25979
# File 'lib/quickfix_fields.rb', line 25977

def UnderlyingEventTime.field
  return 1984
end