Class: Quickfix::TransferRejectReason

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TransferRejectReason

Returns a new instance of TransferRejectReason.



60625
60626
60627
60628
60629
60630
60631
# File 'lib/quickfix_fields.rb', line 60625

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