Class: Quickfix::QuoteModelType

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

Returns a new instance of QuoteModelType.



57713
57714
57715
57716
57717
57718
57719
# File 'lib/quickfix_fields.rb', line 57713

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

Class Method Details

.fieldObject



57710
57711
57712
# File 'lib/quickfix_fields.rb', line 57710

def QuoteModelType.field
  return 2403
end