Class: Quickfix::QuoteResponseLevel

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

Returns a new instance of QuoteResponseLevel.



3802
3803
3804
3805
3806
3807
3808
# File 'lib/quickfix_fields.rb', line 3802

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

Class Method Details

.fieldObject



3799
3800
3801
# File 'lib/quickfix_fields.rb', line 3799

def QuoteResponseLevel.field
  return 301
end