Class: Quickfix::NetworkResponseID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NetworkResponseID

Returns a new instance of NetworkResponseID.



12577
12578
12579
12580
12581
12582
12583
# File 'lib/quickfix_fields.rb', line 12577

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