Class: Quickfix::MDEntryTime

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from UtcTimeOnlyField

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

Constructor Details

#initialize(data = nil) ⇒ MDEntryTime



3438
3439
3440
3441
3442
3443
3444
# File 'lib/quickfix_fields.rb', line 3438

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

Class Method Details

.fieldObject



3435
3436
3437
# File 'lib/quickfix_fields.rb', line 3435

def MDEntryTime.field
  return 273
end