Class: Quickfix::OrderEventType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrderEventType

Returns a new instance of OrderEventType.



23484
23485
23486
23487
23488
23489
23490
# File 'lib/quickfix_fields.rb', line 23484

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