Class: Quickfix::UnderlyingEventType

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

Instance Method Summary collapse

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