Class: Quickfix::TransferStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TransferStatus

Returns a new instance of TransferStatus.



60612
60613
60614
60615
60616
60617
60618
# File 'lib/quickfix_fields.rb', line 60612

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