Class: Quickfix::ApplResponseID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ApplResponseID

Returns a new instance of ApplResponseID.



18557
18558
18559
18560
18561
18562
18563
# File 'lib/quickfix_fields.rb', line 18557

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