Class: Quickfix::UnderlyingEventType

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) ⇒ UnderlyingEventType

Returns a new instance of UnderlyingEventType.



25954
25955
25956
25957
25958
25959
25960
# File 'lib/quickfix_fields.rb', line 25954

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

Class Method Details

.fieldObject



25951
25952
25953
# File 'lib/quickfix_fields.rb', line 25951

def UnderlyingEventType.field
	return 1982
end