Class: Quickfix::NoTradingSessions

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

Returns a new instance of NoTradingSessions.



4803
4804
4805
4806
4807
4808
4809
# File 'lib/quickfix_fields.rb', line 4803

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

Class Method Details

.fieldObject



4800
4801
4802
# File 'lib/quickfix_fields.rb', line 4800

def NoTradingSessions.field
  return 386
end