Class: Quickfix::ExtraordinaryEventValue

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExtraordinaryEventValue

Returns a new instance of ExtraordinaryEventValue.



64434
64435
64436
64437
64438
64439
64440
# File 'lib/quickfix_fields.rb', line 64434

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