Method: Quickfix::QuoteStatus#initialize

Defined in:
lib/quickfix_fields.rb

#initialize(data = nil) ⇒ QuoteStatus

Returns a new instance of QuoteStatus.



13032
13033
13034
13035
13036
13037
13038
# File 'lib/quickfix_fields.rb', line 13032

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