Class: Quickfix::QuoteResponseLevel

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuoteResponseLevel

Returns a new instance of QuoteResponseLevel.



19103
19104
19105
19106
19107
19108
19109
# File 'lib/quickfix_fields.rb', line 19103

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

Class Method Details

.fieldObject



19100
19101
19102
# File 'lib/quickfix_fields.rb', line 19100

def QuoteResponseLevel.field
  return 301
end