Class: Quickfix::ResponseTransportType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ResponseTransportType

Returns a new instance of ResponseTransportType.



9938
9939
9940
9941
9942
9943
9944
# File 'lib/quickfix_fields.rb', line 9938

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