Class: Quickfix::ExtraordinaryEventType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExtraordinaryEventType

Returns a new instance of ExtraordinaryEventType.



64421
64422
64423
64424
64425
64426
64427
# File 'lib/quickfix_fields.rb', line 64421

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