Class: Quickfix::TimeUnit

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TimeUnit

Returns a new instance of TimeUnit.



12018
12019
12020
12021
12022
12023
12024
# File 'lib/quickfix_fields.rb', line 12018

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

Class Method Details

.fieldObject



12015
12016
12017
# File 'lib/quickfix_fields.rb', line 12015

def TimeUnit.field
  return 997
end