Class: Quickfix::ApplResponseError

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ApplResponseError

Returns a new instance of ApplResponseError.



18570
18571
18572
18573
18574
18575
18576
# File 'lib/quickfix_fields.rb', line 18570

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

Class Method Details

.fieldObject



18567
18568
18569
# File 'lib/quickfix_fields.rb', line 18567

def ApplResponseError.field
	return 1354
end