Class: Quickfix::NetworkRequestType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NetworkRequestType

Returns a new instance of NetworkRequestType.



12616
12617
12618
12619
12620
12621
12622
# File 'lib/quickfix_fields.rb', line 12616

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