Class: Quickfix::OrderEntryID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrderEntryID

Returns a new instance of OrderEntryID.



60456
60457
60458
60459
60460
60461
60462
# File 'lib/quickfix_fields.rb', line 60456

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