Class: Quickfix::QuoteID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ QuoteID

Returns a new instance of QuoteID.



2047
2048
2049
2050
2051
2052
2053
# File 'lib/quickfix_fields.rb', line 2047

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

Class Method Details

.fieldObject



2044
2045
2046
# File 'lib/quickfix_fields.rb', line 2044

def QuoteID.field
  return 117
end