Class: Quickfix::QuoteID

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

Instance Method Summary collapse

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