Class: Quickfix::TransferID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TransferID

Returns a new instance of TransferID.



60547
60548
60549
60550
60551
60552
60553
# File 'lib/quickfix_fields.rb', line 60547

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