Class: Quickfix::DerivativeEventType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ DerivativeEventType

Returns a new instance of DerivativeEventType.



17088
17089
17090
17091
17092
17093
17094
# File 'lib/quickfix_fields.rb', line 17088

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

Class Method Details

.fieldObject



17085
17086
17087
# File 'lib/quickfix_fields.rb', line 17085

def DerivativeEventType.field
	return 1287
end